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.
test:module
1 parent cb05ff7 commit cb97ad0Copy full SHA for cb97ad0
.github/workflows/build.yml
@@ -19,6 +19,7 @@ jobs:
19
- run: npm run lint
20
- run: npm run lint:dts
21
- run: npm run test:ci
22
+ - run: npm run test:module
23
- run: npm run test:integration
24
- run: npm run benchmark
25
- name: Coveralls
package.json
@@ -16,6 +16,7 @@
16
"release": "standard-version --no-verify",
17
"test": "jest --coverage --testPathIgnorePatterns test/integration/",
18
"test:ci": "npm test -- --ci",
+ "test:module": "node --experimental-modules test/module/index.mjs",
"test:integration": "npm run build && jest test/integration/",
"test:watch": "npm test -- --watch"
},
0 commit comments