Skip to content

Commit 73e3d2c

Browse files
authored
Fix CI test script not running all tests (#6803)
1 parent 6ec02b1 commit 73e3d2c

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

scripts/ciTest.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -61,7 +61,7 @@ async function runTests() {
6161
for (const file of files) {
6262
var testDir = path.join(buildTestDir, file);
6363
if (file === "node_modules" || !fs.lstatSync(testDir).isDirectory()) {
64-
return;
64+
break;
6565
}
6666
if (!fs.existsSync(path.join(testDir, "input.js"))) {
6767
console.warn(`input.js does not exist in ${testDir}`);

0 commit comments

Comments
 (0)