MCPcopy
hub / github.com/jestjs/jest / skipSuiteOnJasmine

Function skipSuiteOnJasmine

packages/test-utils/src/ConditionalTest.ts:18–24  ·  view source on GitHub ↗
()

Source from the content-addressed store, hash-verified

16}
17
18export function skipSuiteOnJasmine(): void {
19 if (isJestJasmineRun()) {
20 test.only('does not work on Jasmine', () => {
21 console.warn('[SKIP] Does not work on Jasmine');
22 });
23 }
24}
25
26export function skipSuiteOnJestCircus(): void {
27 if (!isJestJasmineRun()) {

Calls 2

isJestJasmineRunFunction · 0.85
warnMethod · 0.45

Tested by

no test coverage detected