Skip to content

Commit 5923f49

Browse files
authoredOct 3, 2024
Fix test script (#7067)
1 parent 85bcbd9 commit 5923f49

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed
 

‎scripts/ciTest.js

+1-1
Original file line numberDiff line numberDiff line change
@@ -85,7 +85,7 @@ async function runTests() {
8585
for (const file of files) {
8686
const testDir = path.join(buildTestDir, file);
8787
if (file === "node_modules" || !fs.lstatSync(testDir).isDirectory()) {
88-
break;
88+
continue;
8989
}
9090
if (!fs.existsSync(path.join(testDir, "input.js"))) {
9191
console.warn(`input.js does not exist in ${testDir}`);

0 commit comments

Comments
 (0)