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
Thanks for your work on this 👍
Is it possible to run Jest in watch mode with this plugin?
I couldn't find any reference in the docs. It would be a really useful feature to add if possible!
The text was updated successfully, but these errors were encountered:
I try to make it working by passing watch into jestrunCLI() but it doesn't seems that easy.
watch
runCLI()
Would really appreciate if someone can guide us here.
Sorry, something went wrong.
The problem is the way the configuration is passed into runCLI in run-tests.js
BEFORE
return runCLI({ config },
AFTER
const cliOptions = { config } if (config.watch === true) { cliOptions.watch = config.watch } return runCLI(cliOptions,
In my serverless.yml file
plugins: - serverless-jest-plugin custom: jest: collectCoverage: true watch: true
I'll do a pull request at some point ...
No branches or pull requests
Thanks for your work on this 👍
Is it possible to run Jest in watch mode with this plugin?
I couldn't find any reference in the docs. It would be a really useful feature to add if possible!
The text was updated successfully, but these errors were encountered: