Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion .github/workflows/lint-build-test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -149,7 +149,7 @@ jobs:
yarn build-release
cd -
- run: yarn build
- run: yarn run test
- run: yarn test:ci
- name: Require clean working directory
shell: bash
run: |
Expand Down
9 changes: 4 additions & 5 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -31,13 +31,12 @@
"postinstall": "simple-git-hooks",
"prepack": "./scripts/prepack.sh",
"pretest": "bash scripts/reset-coverage-thresholds.sh",
"posttest": "printf '\\n' >> vitest.config.ts",
"test": "yarn pretest && vitest run && yarn posttest",
"test:dev": "yarn pretest && vitest run --mode development && yarn posttest",
"test:clean": "yarn test --no-cache --coverage.clean",
"test": "yarn pretest && vitest run",
"test:ci": "vitest run",
"test:dev": "yarn test --mode development",
"test:e2e": "yarn workspaces foreach --all run test:e2e",
"test:e2e:ci": "yarn workspaces foreach --all run test:e2e:ci",
"test:verbose": "yarn pretest && yarn test --reporter verbose && yarn posttest",
"test:verbose": "yarn test --reporter verbose",
"test:watch": "vitest",
"why:batch": "./scripts/why-batch.sh"
},
Expand Down
Loading