We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 72ee9a6 commit 7788328Copy full SHA for 7788328
tests/_jest-vitest-alias.js
@@ -13,6 +13,7 @@ export {
13
14
// Add support for describe.skipIf, test.skipIf, and test.runIf
15
describe.skipIf = (condition) => (condition ? describe.skip : describe)
16
+describe.runIf = (condition) => (condition ? describe : describe.skip)
17
test.skipIf = (condition) => (condition ? test.skip : test)
18
test.runIf = (condition) => (condition ? test : test.skip)
19
0 commit comments