Skip to content

Commit 61dc829

Browse files
committed
..
1 parent 68c80d6 commit 61dc829

File tree

1 file changed

+2
-5
lines changed

1 file changed

+2
-5
lines changed

packages/integration-tests/utils/testIf.ts

Lines changed: 2 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -22,9 +22,6 @@ export const testIfNodeMajorVersionIsLessThan18: jest.It = function () {
2222
} as any;
2323

2424
// eslint-disable-next-line no-undef
25-
export const describeNode18Plus: jest.Describe = function () {
25+
export const describeNode18Plus: jest.Describe =
2626
// eslint-disable-next-line no-undef
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-
};
27+
NODE_MAJOR_VERSION >= 18 ? describe : describe.skip;

0 commit comments

Comments
 (0)