Skip to content

Commit 68c80d6

Browse files
committed
.
1 parent bed70a8 commit 68c80d6

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

packages/integration-tests/utils/testIf.ts

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

2424
// eslint-disable-next-line no-undef
25-
export function describeNode18Plus(): jest.Describe {
25+
export const describeNode18Plus: jest.Describe = function () {
2626
// eslint-disable-next-line no-undef
2727
console.log({ NODE_MAJOR_VERSION, describe, describeSkip: describe.skip });
2828
// eslint-disable-next-line no-undef
2929
return NODE_MAJOR_VERSION >= 18 ? describe : describe.skip;
30-
}
30+
};

0 commit comments

Comments
 (0)