Skip to content

Commit d79f2b9

Browse files
authoredJan 8, 2023
chore: Remove incompatible vitest flag from test:ci (#4777)
* Remove coverage flag Add back again in a simpler script setup * Allow coverage to run on test:ci
1 parent b324a9b commit d79f2b9

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed
 

‎package.json

+2-2
Original file line numberDiff line numberDiff line change
@@ -6,8 +6,8 @@
66
"preinstall": "node -e \"if(process.env.CI == 'true') {console.log('Skipping preinstall...'); process.exit(1)}\" || npx -y only-allow pnpm",
77
"install:csb": "pnpm install --frozen-lockfile",
88
"test": "pnpm run test:ci",
9-
"test:ci": "pnpm run test:format && pnpm run test:eslint && pnpm run test:jest --collectCoverage false && pnpm run typecheck",
10-
"test:react:17": "pnpm --filter \"./packages/react-*\" --no-bail run test:jest --collectCoverage false",
9+
"test:ci": "pnpm run test:format && pnpm run test:eslint && pnpm run test:jest && pnpm run typecheck",
10+
"test:react:17": "pnpm --filter \"./packages/react-*\" --no-bail run test:jest",
1111
"test:eslint": "pnpm --filter \"./packages/**\" --no-bail run test:eslint",
1212
"test:format": "pnpm run prettier --check",
1313
"test:jest": "pnpm --filter \"./packages/**\" --no-bail run test:jest",

0 commit comments

Comments
 (0)
Please sign in to comment.