We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent bef8ba3 commit 1ee28f7Copy full SHA for 1ee28f7
Makefile
@@ -24,10 +24,10 @@ dev: $(NPM) $(LIB_SRC)
24
@touch $(LIB)
25
26
test: $(LIB)
27
- node --test test/*.js
+ node --test "test/*.js"
28
29
debug: $(LIB)
30
- node --test --watch test/*.js
+ node --test --watch "test/*.js"
31
32
visual: $(LIB)
33
@node --watch-path lib --watch-path test/visual test/visual
package.json
@@ -25,7 +25,7 @@
"build": "node lib/prebuild.mjs compile",
"install": "node lib/prebuild.mjs download --or-compile",
"upload": "node lib/prebuild.mjs upload",
- "test": "node --test test/*.js"
+ "test": "node --test 'test/*.js'"
},
"dependencies": {
"detect-libc": "^2.0.4",
0 commit comments