(args: Array<string>)
| 10 | import runJest from '../runJest'; |
| 11 | |
| 12 | function assertFailuresAndSnapshot(args: Array<string>) { |
| 13 | const result = runJest('wrong-env', args); |
| 14 | expect(result.exitCode).toBe(1); |
| 15 | expect(extractSummary(result.stderr).rest).toMatchSnapshot(); |
| 16 | } |
| 17 | |
| 18 | describe('Wrong globals for environment', () => { |
| 19 | it('print useful error for window', () => { |
no test coverage detected