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
we have an issue in our codebase, which I'm pretty sure is caused by firebase, but a single test doesn't exit properly, then have to kill it. adding --forceExit to the command line seems to fix this, but I see no way to add this in this plugin.
The text was updated successfully, but these errors were encountered:
hmmm... you should be able to do this by customizing the jest.pathToJest in your .vscode/settings.json file. Basically you can instruct this extension to run whatever jest command you want with this setting, for example, to run you test script in package.json, which has the --forceExit flag, you can just set"jest.pathToJest": yarn test or run jest directly: "jest.pathToJest": xxx/node_modules/.bin/jest --forceExit
we have an issue in our codebase, which I'm pretty sure is caused by firebase, but a single test doesn't exit properly, then have to kill it. adding
--forceExit
to the command line seems to fix this, but I see no way to add this in this plugin.The text was updated successfully, but these errors were encountered: