From d79f2b97d226a2a846af51570497ef32ccf53af8 Mon Sep 17 00:00:00 2001 From: Lachlan Collins <1667261+lachlancollins@users.noreply.github.com> Date: Sun, 8 Jan 2023 23:17:23 +1100 Subject: [PATCH] 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 --- package.json | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/package.json b/package.json index d9f43318c5..356628920c 100644 --- a/package.json +++ b/package.json @@ -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",