Skip to content

Commit

Permalink
chore: disable test watch mode by default
Browse files Browse the repository at this point in the history
  • Loading branch information
jbrunton committed Aug 26, 2024
1 parent 05f4c70 commit 657f303
Show file tree
Hide file tree
Showing 2 changed files with 10 additions and 6 deletions.
3 changes: 2 additions & 1 deletion client/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,8 @@
"lint": "eslint --max-warnings 0 'src/**/*.{ts,tsx}'",
"lint:fix": "eslint --max-warnings 0 --fix 'src/**/*.{ts,tsx}'",
"format": "prettier --write 'src/**/*.{ts,tsx,css,md}' --config ./.prettierrc",
"test": "vitest"
"test": "vitest run",
"test:watch": "vitest"
},
"dependencies": {
"@auth0/auth0-react": "1.12.0",
Expand Down
13 changes: 8 additions & 5 deletions turbo.json
Original file line number Diff line number Diff line change
Expand Up @@ -5,18 +5,21 @@
"dependsOn": ["^build"],
"outputs": ["dist/**"]
},
"lint": {},
"test": {},
"test:int": {},
"dev:setup": {
"lint": {
"cache": false
},
"test": {
"cache": false
},
"dev:teardown": {
"test:int": {
"cache": false
},
"dev": {
"cache": false,
"persistent": true
},
"dev:setup": {
"cache": false
}
}
}

0 comments on commit 657f303

Please sign in to comment.