Skip to content

Commit

Permalink
test: disable watching by default, add test:watch script (rainbow-me#122
Browse files Browse the repository at this point in the history
)
  • Loading branch information
markdalgleish authored Feb 23, 2022
1 parent 5d09481 commit ddf6e10
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 0 deletions.
1 change: 1 addition & 0 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -12,6 +12,7 @@
"format": "prettier --check \"./**/*.{ts,js,mjs,cjs,md,tsx}\"",
"format:fix": "prettier --write \"./**/*.{ts,js,mjs,cjs,md,tsx}\"",
"test": "vitest",
"test:watch": "vitest --watch",
"chgset:run": "changeset",
"chgset:version": "changeset version",
"chgset": "pnpm chgset:run && pnpm chgset:version",
Expand Down
3 changes: 3 additions & 0 deletions vitest.config.js
Original file line number Diff line number Diff line change
Expand Up @@ -2,4 +2,7 @@ import { vanillaExtractPlugin } from '@vanilla-extract/vite-plugin';

export default {
plugins: [vanillaExtractPlugin()],
test: {
watch: false,
},
};

0 comments on commit ddf6e10

Please sign in to comment.