ConnectDotz

Results 313 comments of ConnectDotz

Nice to hear that you still feel strongly about this project. We all loved it and wanted to see it keep going. if the current pull requests don't align with...

sure, for example, in `vscode-jest` plugin, we parse jest coverage output continuously, when a user made changes in the file, jest will produce completely new maps... the new ones should...

this should be addressed by v5 output terminal.

This sounds like a monorepo project set-up issue. Please take a look at the [troubleshooting/jest-failed-to-run](https://github.com/jest-community/vscode-jest#jest-failed-to-run), particularly the [monorepo projects](https://github.com/jest-community/vscode-jest#how-to-use-the-extension-with-monorepo-projects) section. Let me know if it helps.

@taschetto, I can take a deeper look if you can put together a sample repo. @gedclack, does it return to normal if you restart `code`? I have seen the restart...

@javifm86 are you able to examine the process env of the spawned process? exit code 127 means "command not found", which usually indicates process.env is not fully set up as...

It seems vscode didn't initialize the process env completely. For people who frequently bumped into this issue, you can try switching to [login shell](https://github.com/jest-community/vscode-jest/blob/master/release-notes/release-note-v5.md#5-login-shell-support) added in v5 (still pre-release), and...

@taschetto I looked at your original issue content more closely today, and noticed your comment: ``` "jest.jestCommandLine": "node_modules/.bin/jest", // same behavior when `undefined` or just `npm run tests` ``` Not...

@pmckee11 thanks for sharing the code, does the solution work in Google Chrome incognito mode, i.e. when "blocking third-party cookies" is turned on?

hi, yes it's true that when a file change (add/delete/rename) is detected, we asked jest to verify if it is a test file. The culprit of the issue seems to...