Skip to content

Commit 66e8eb7

Browse files
committed
fix(ci): use portable test glob (test/*.test.js)
node --test on the runner's non-globstar sh never expanded test/**/*.test.js, so CI reported 'Could not find'. All test files are flat in test/, so a single * is correct and portable. Pre-existing fragility surfaced by adding CI. Co-Authored-By: jjohare <github@thedreamlab.uk>
1 parent fdab878 commit 66e8eb7

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@
88
"dev": "echo 'Load extension from chrome://extensions in developer mode'",
99
"build": "npm run bundle",
1010
"bundle": "node scripts/bundle.js",
11-
"test": "node --test test/**/*.test.js",
11+
"test": "node --test test/*.test.js",
1212
"lint": "eslint src/"
1313
},
1414
"keywords": [

0 commit comments

Comments
 (0)