Skip to content
This repository was archived by the owner on Mar 29, 2023. It is now read-only.

Commit 34a3283

Browse files
committed
fix: find test names with template literals when filtering specs
1 parent 4a1bdf6 commit 34a3283

File tree

3 files changed

+6
-5
lines changed

3 files changed

+6
-5
lines changed

cypress/integration/skip-spec.js

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,7 @@
11
/// <reference types="cypress" />
22
describe('tests that use .skip', () => {
3-
it('works', () => {})
3+
// use a template literal
4+
it(`works`, () => {})
45

56
it.skip('is pending', () => {})
67

package-lock.json

Lines changed: 3 additions & 3 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,7 @@
2828
},
2929
"dependencies": {
3030
"debug": "4.3.1",
31-
"find-test-names": "^1.2.0",
31+
"find-test-names": "^1.2.1",
3232
"globby": "^11.0.4"
3333
}
3434
}

0 commit comments

Comments
 (0)