Skip to content

Commit 27bae7f

Browse files
committed
Oops
1 parent e991722 commit 27bae7f

File tree

3 files changed

+3
-4
lines changed

3 files changed

+3
-4
lines changed

package.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -35,7 +35,7 @@
3535
"npm-run-all": "^4.1.5"
3636
},
3737
"volta": {
38-
"node": "20.19.1",
38+
"node": "14.21.2",
3939
"yarn": "1.22.19"
4040
}
4141
}

packages/integration-tests/fixtures/debug-ids-already-injected/debug-ids-already-injected.test.ts

+1-3
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,4 @@
1-
/* eslint-disable jest/no-standalone-expect */
2-
/* eslint-disable jest/expect-expect */
3-
import path from "path";
1+
import * as path from "path";
42
import * as fs from "fs";
53
import * as os from "os";
64
import { describeNode18Plus } from "../../utils/testIf";

packages/integration-tests/utils/testIf.ts

+1
Original file line numberDiff line numberDiff line change
@@ -23,4 +23,5 @@ export const testIfNodeMajorVersionIsLessThan18: jest.It = function () {
2323

2424
// eslint-disable-next-line no-undef
2525
export const describeNode18Plus: jest.Describe =
26+
// eslint-disable-next-line no-undef
2627
NODE_MAJOR_VERSION >= 18 ? describe : describe.skip;

0 commit comments

Comments
 (0)