typescript-babel-jest icon indicating copy to clipboard operation
typescript-babel-jest copied to clipboard

DEPRECATED: ⚡ Typescript-babel jest preprocessor

Results 5 typescript-babel-jest issues
Sort by recently updated
recently updated
newest added

I'd like to be able to specify a different `tsconfig` file; currently it will always read from the `tsconfig.json` located at the root directory of the project.

See this issue https://github.com/Microsoft/TypeScript/issues/4987 and this PR https://github.com/Microsoft/TypeScript/pull/5450 But this plugin uses require to import tsconfig, which rejects comments(as standard json does not support comments). Error message: > Test suite...

Snapshots got updated to undefined. ``` return ( test ); ``` ``` - "className": "checkBox", + "className": undefined, ```

There seems to be an issue with source maps. If I try to track coverage in Typescript files I get hits and misses on strange lines.

I'm receiving an error if I run tests using typescript-babel-jest from a parent folder with the --projects option. Project structure ``` project └───subfoler │ │ package.json │ │ tsconfig.json │...