We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent f70e848 commit 1dcfee4Copy full SHA for 1dcfee4
.vscode/launch.json
@@ -16,7 +16,7 @@
16
"request": "launch",
17
"runtimeArgs": [
18
"--test",
19
- "./lib/esm/test/**/*.test.js"
+ "./lib/esm/test/*.test.js"
20
],
21
"cwd": "${workspaceRoot}",
22
"sourceMaps": true,
package.json
@@ -43,7 +43,7 @@
43
"remove-sourcemap-refs": "node ./build/remove-sourcemap-refs.js",
44
"watch": "tsc -w -p ./src",
45
"pretest": "npm run compile",
46
- "test": "node --test ./lib/esm/test/**/*.test.js",
+ "test": "node --test ./lib/esm/test/*.test.js",
47
"posttest": "npm run lint",
48
"coverage": "npx nyc -r lcov npm run test",
49
"lint": "eslint src/**/*.ts",
0 commit comments