Navigation Menu

Skip to content

Commit

Permalink
chore: Remove incompatible vitest flag from test:ci (#4777)
Browse files Browse the repository at this point in the history
* Remove coverage flag

Add back again in a simpler script setup

* Allow coverage to run on test:ci
  • Loading branch information
lachlancollins committed Jan 8, 2023
1 parent b324a9b commit d79f2b9
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions package.json
Expand Up @@ -6,8 +6,8 @@
"preinstall": "node -e \"if(process.env.CI == 'true') {console.log('Skipping preinstall...'); process.exit(1)}\" || npx -y only-allow pnpm",
"install:csb": "pnpm install --frozen-lockfile",
"test": "pnpm run test:ci",
"test:ci": "pnpm run test:format && pnpm run test:eslint && pnpm run test:jest --collectCoverage false && pnpm run typecheck",
"test:react:17": "pnpm --filter \"./packages/react-*\" --no-bail run test:jest --collectCoverage false",
"test:ci": "pnpm run test:format && pnpm run test:eslint && pnpm run test:jest && pnpm run typecheck",
"test:react:17": "pnpm --filter \"./packages/react-*\" --no-bail run test:jest",
"test:eslint": "pnpm --filter \"./packages/**\" --no-bail run test:eslint",
"test:format": "pnpm run prettier --check",
"test:jest": "pnpm --filter \"./packages/**\" --no-bail run test:jest",
Expand Down

0 comments on commit d79f2b9

Please sign in to comment.