chore: split vitest (#3426)

This commit is contained in:
Alex Yang
2023-07-27 20:06:50 -07:00
committed by GitHub
parent 8185ee991b
commit 0ab1cfdeb6
6 changed files with 49 additions and 24 deletions

View File

@@ -36,9 +36,9 @@
"lint:prettier:fix": "prettier --ignore-unknown --cache --write .",
"lint": "yarn lint:eslint && yarn lint:prettier",
"lint:fix": "yarn lint:eslint:fix && yarn lint:prettier:fix",
"test": "ENABLE_PRELOADING=false vitest --run",
"test:ui": "ENABLE_PRELOADING=false vitest --ui",
"test:coverage": "ENABLE_PRELOADING=false vitest run --coverage",
"test": "vitest --run",
"test:ui": "vitest --ui",
"test:coverage": "vitest run --coverage",
"notify": "node scripts/notify.mjs",
"circular": "madge --circular --ts-config ./tsconfig.json ./apps/core/src/pages/**/*.tsx",
"typecheck": "tsc -b tsconfig.json --diagnostics",