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 68c80d6 commit 61dc829Copy full SHA for 61dc829
packages/integration-tests/utils/testIf.ts
@@ -22,9 +22,6 @@ export const testIfNodeMajorVersionIsLessThan18: jest.It = function () {
22
} as any;
23
24
// eslint-disable-next-line no-undef
25
-export const describeNode18Plus: jest.Describe = function () {
+export const describeNode18Plus: jest.Describe =
26
27
- console.log({ NODE_MAJOR_VERSION, describe, describeSkip: describe.skip });
28
- // eslint-disable-next-line no-undef
29
- return NODE_MAJOR_VERSION >= 18 ? describe : describe.skip;
30
-};
+ NODE_MAJOR_VERSION >= 18 ? describe : describe.skip;
0 commit comments