Skip to content

Commit 3316bf7

Browse files
test: fix
1 parent 44456d0 commit 3316bf7

File tree

4 files changed

+7
-8
lines changed

4 files changed

+7
-8
lines changed

test/configCases/performance/many-async-imports/test.filter.js

Lines changed: 0 additions & 3 deletions
This file was deleted.

test/configCases/performance/many-exports/test.filter.js

Lines changed: 0 additions & 3 deletions
This file was deleted.

test/configCases/race-conditions/import-module/index.js

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,6 @@ import * as styles from './style.module.css';
22
import * as styles1 from './module.js';
33

44
it("should not deadlock when using importModule", () => {
5-
expect(styles).toMatchObject({ "someBottom": "8px" });
6-
expect(styles1).toMatchObject({ "someBottom": "8px" });
5+
expect(styles.someBottom).toBe("8px");
6+
expect(styles1.someBottom).toBe("8px");
77
});
Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,5 @@
1+
module.exports = function (config) {
2+
const [major] = process.versions.node.split(".").map(Number);
3+
4+
return major >= 18;
5+
};

0 commit comments

Comments
 (0)