Skip to content

Commit

Permalink
test: re-include compatibility tests in coverage report (#2115)
Browse files Browse the repository at this point in the history
  • Loading branch information
marcalexiei authored Jan 13, 2024
1 parent f78fa2b commit 44e132d
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -103,10 +103,10 @@
"scripts": {
"lint": "eslint src typescript test \"./*.{ts,mts}\"",
"pretest": "npm run generate_ts_v4_index && npm run lint",
"test": "vitest --typecheck --workspace vitest.workspace.mts --run",
"test:runtime": "vitest --workspace vitest.workspace.mts --project runtime",
"test:compatibility": "vitest --workspace vitest.workspace.mts --project compatibility",
"test:coverage": "npm run test:runtime -- --coverage --run",
"test": "vitest --run",
"test:coverage": "vitest --project runtime --project compatibility --coverage --run",
"test:runtime": "vitest --project runtime",
"test:compatibility": "vitest --project compatibility",
"test:local": "vitest --workspace vitest.workspace.local.mts",
"build": "rimraf dist && rollup -c && echo '{\"type\":\"module\"}' > dist/esm/package.json && cpy \"./dist/umd/*.js\" ./",
"generate_ts_v4_index": "cp index.d.ts index.v4.d.ts && node -e \"fs.writeFileSync('index.v4.d.ts', fs.readFileSync('index.v4.d.ts').toString().replace(/t.js/g, 't.v4.js').replace(/export type \\* /g, '// export type * '))\"",
Expand Down

0 comments on commit 44e132d

Please sign in to comment.