(workDir: string)
| 50 | } |
| 51 | |
| 52 | function typeCheck(workDir: string) { |
| 53 | // throws (non-zero exit) if type checking fails |
| 54 | execSync('npx tsc --noEmit', { cwd: workDir, stdio: 'pipe' }); |
| 55 | } |
| 56 | |
| 57 | describe('Import file extension generation', () => { |
| 58 | it('omits the extension and compiles under bundler resolution', async () => { |
no test coverage detected