Skip to content

Commit 1ee28f7

Browse files
committed
quote test pattern
1 parent bef8ba3 commit 1ee28f7

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed

Makefile

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -24,10 +24,10 @@ dev: $(NPM) $(LIB_SRC)
2424
@touch $(LIB)
2525

2626
test: $(LIB)
27-
node --test test/*.js
27+
node --test "test/*.js"
2828

2929
debug: $(LIB)
30-
node --test --watch test/*.js
30+
node --test --watch "test/*.js"
3131

3232
visual: $(LIB)
3333
@node --watch-path lib --watch-path test/visual test/visual

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,7 @@
2525
"build": "node lib/prebuild.mjs compile",
2626
"install": "node lib/prebuild.mjs download --or-compile",
2727
"upload": "node lib/prebuild.mjs upload",
28-
"test": "node --test test/*.js"
28+
"test": "node --test 'test/*.js'"
2929
},
3030
"dependencies": {
3131
"detect-libc": "^2.0.4",

0 commit comments

Comments
 (0)