You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Hello,
the readme currently has two split sections on installing jest-enzyme: one at the top for general import and another at the bottom for cra and ts specifics. I'd like to put them under a common headline and make the following changes:
1/ The alternative setup suggests to specify jest-enzyme's main module path. Would the following work, too?
2/ The instructions for Typescript suggest to import jest-enzyme from src/setupTests.js to ensure the signatures are available to the language-server. Alternatively, that import can be made from a .d.ts-file to be included in the tsconfig's typeRoots option. Example src/types/jest-enzyme.d.ts:
Thanks to you issue I finally got my tests running with ts-jest 😄
I added "typeRoots": ["./node_modules/@types","./node_modules/jest-enzyme/lib"] to my compilerOptions.
Hello,
the readme currently has two split sections on installing jest-enzyme: one at the top for general import and another at the bottom for cra and ts specifics. I'd like to put them under a common headline and make the following changes:
1/ The alternative setup suggests to specify jest-enzyme's main module path. Would the following work, too?
2/ The instructions for Typescript suggest to import jest-enzyme from
src/setupTests.js
to ensure the signatures are available to the language-server. Alternatively, that import can be made from a.d.ts
-file to be included in the tsconfig'stypeRoots
option. Examplesrc/types/jest-enzyme.d.ts
:Example
tsconfig.json
3/ Some links are obsolete. CRA docs on tests moved here
The text was updated successfully, but these errors were encountered: