We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 420209b commit c56eedeCopy full SHA for c56eede
changelog.md
@@ -33,6 +33,7 @@
33
- Updated the package scripts:
34
- Reordered and renamed scripts.
35
- Replaced `npm run` with `node --run`.
36
+ - Target test modules with a glob.
37
- Updated GitHub Actions CI config:
38
- Updated workflow triggers.
39
- Run checks in separate jobs.
package.json
@@ -73,7 +73,7 @@
73
"prettier": "prettier -c .",
74
"eslint": "eslint",
75
"types": "tsc -p jsconfig.json",
76
- "test": "coverage-node --test-reporter=spec --test",
+ "test": "coverage-node --test-reporter=spec --test *.test.mjs",
77
"check": "node --run prettier && node --run eslint && node --run types && node --run test",
78
"prepublishOnly": "node --run check"
79
}
0 commit comments