Skip to content

Commit a6d9b40

Browse files
committed
Run Core tests in CI
1 parent 9a9e687 commit a6d9b40

File tree

1 file changed

+11
-1
lines changed

1 file changed

+11
-1
lines changed

scripts/test.js

Lines changed: 11 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -65,7 +65,17 @@ async function runTests() {
6565
stdio: [0, 1, 2],
6666
});
6767

68-
cp.execSync(`npx mocha -t 10000 tests/tests/**/*_test.mjs`, {
68+
cp.execSync("npx mocha -t 10000 tests/tests/**/*_test.mjs", {
69+
cwd: path.join(__dirname, ".."),
70+
stdio: [0, 1, 2],
71+
});
72+
73+
cp.execSync("node tests/tests/src/core/Core_TestSuite.mjs", {
74+
cwd: path.join(__dirname, ".."),
75+
stdio: [0, 1, 2],
76+
});
77+
78+
cp.execSync("node tests/tests/src/core/Core_TempTests.mjs", {
6979
cwd: path.join(__dirname, ".."),
7080
stdio: [0, 1, 2],
7181
});

0 commit comments

Comments
 (0)