We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
I try run jest tests on my next.js project but it doesnt work.
My next.config.js:
extending next.js webpack:
but it doesnt work, so I tried ts-jest
jest.config.ts
But I got error on every solutions:
error:
The text was updated successfully, but these errors were encountered:
Hey @Merynek, sorry for a late reply
transformToMobxFLow is not defined is a typescript error, you most likely missing the first step from this section to add type definitions
transformToMobxFLow is not defined
You may need to add a reference to this package's typescript definition file in order to declare the global transformToMobxFlow function: /// <reference path="node_modules/ts-transform-async-to-mobx-flow/transformToMobxFlow.d.ts" /> It can be added to a global.d.ts file to access transformToMobxFlow in all the project files.
You may need to add a reference to this package's typescript definition file in order to declare the global transformToMobxFlow function:
transformToMobxFlow
/// <reference path="node_modules/ts-transform-async-to-mobx-flow/transformToMobxFlow.d.ts" />
It can be added to a global.d.ts file to access transformToMobxFlow in all the project files.
global.d.ts
Sorry, something went wrong.
No branches or pull requests
I try run jest tests on my next.js project but it doesnt work.
My next.config.js:
extending next.js webpack:
but it doesnt work, so I tried ts-jest
jest.config.ts
But I got error on every solutions:
error:
The text was updated successfully, but these errors were encountered: