vitest/test/coverage-test/package.json

20 lines
596 B
JSON

{
"name": "@vitest/test-coverage",
"private": true,
"scripts": {
"test": "pnpm test:c8 && pnpm test:istanbul && pnpm test:custom && pnpm test:types",
"test:c8": "node ./testing.mjs --provider c8",
"test:custom": "node ./testing.mjs --provider custom",
"test:istanbul": "node ./testing.mjs --provider istanbul",
"test:types": "vitest typecheck --run --reporter verbose"
},
"devDependencies": {
"@vitejs/plugin-vue": "latest",
"@vue/test-utils": "latest",
"happy-dom": "latest",
"vite": "latest",
"vitest": "workspace:*",
"vue": "latest"
}
}