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 3571fc3 commit a3590b9Copy full SHA for a3590b9
jest.config.js
@@ -12,5 +12,6 @@ export default {
12
transformIgnorePatterns: [
13
"/node_modules/(?!eventsource)/"
14
],
15
+ collectCoverageFrom: ["src/**/*.ts"],
16
testPathIgnorePatterns: ["/node_modules/", "/dist/"],
17
};
package.json
@@ -41,6 +41,7 @@
41
"prepack": "npm run build:esm && npm run build:cjs",
42
"lint": "eslint src/",
43
"test": "jest",
44
+ "coverage": "jest --coverage",
45
"start": "npm run server",
46
"server": "tsx watch --clear-screen=false src/cli.ts server",
47
"client": "tsx src/cli.ts client"
0 commit comments