Questions tagged [vscode-jest]

3 questions
0
votes
1 answer

jest code coverage overlay not showing up in vscode anymore

It had previously been working. All I had to do is: Ctrl + Shift + P and run Jest: Toggle Coverage. Sometimes I had to manually trigger the test run for the file I wanted to have a code coverage overlay. I made sure I'm viewing a file which had a…
Wu Wei
  • 1,827
  • 1
  • 15
  • 27
0
votes
1 answer

How keep tests shortcuts/icons once `auto-run` is switched off from the extension sidebar?

Currently Jest in my VSCode uses the --watch parameter (I use the Orta.vscode-jest extension), which mean when I save a file, it will run all tests in uncommitted files. It's a good default behavior but sometimes my upcoming commit may imply…
Thomas Ramé
  • 438
  • 4
  • 10
0
votes
1 answer

Jest vscode-jest Extension Running All Tests (Despite Proper Configuration and Using Git)

As the title says, I'm using Git as source control for my project, and I'm using the below configuration: "jest.autoRun": "watch", "jest.debugCodeLens.showWhenTestStateIn": ["pass", "skip", "fail", "unknown"], "jest.coverageFormatter":…
Scott Baker
  • 10,013
  • 17
  • 56
  • 102