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