firsttris / vscode-jest-runner

Simple way to run or debug one or more tests from context menu, codelens or command plalette
https://marketplace.visualstudio.com/items?itemName=firsttris.vscode-jest-runner
MIT License
264 stars 124 forks source link

fix: Run only tests with a name that matches the regex #277

Closed rhzone closed 1 year ago

rhzone commented 1 year ago
describe('my pr', () => {
  it('should run this test', () => {

  })
  it('should run this test, however jest run this beacause it finally match this test name', () => {

  })
})
firsttris commented 1 year ago

@rhzone y did you close, is it no longer relevant?

rhzone commented 1 year ago

I found that when i want to run all tests inside describe, my commit won't work 🤣. @firsttris