Skip to content

Commit

Permalink
fix: don't cache tests
Browse files Browse the repository at this point in the history
  • Loading branch information
JoCa96 committed Dec 13, 2024
1 parent 5e1b90f commit 62aca04
Showing 1 changed file with 6 additions and 3 deletions.
9 changes: 6 additions & 3 deletions turbo.json
Original file line number Diff line number Diff line change
Expand Up @@ -16,15 +16,18 @@
"outputs": ["storybook-static"]
},
"test:coverage": {
"outputs": ["coverage"]
"outputs": ["coverage"],
"cache": false
},
"test:components": {
"dependsOn": ["^build"],
"outputs": ["playwright-report", "test-results"]
"outputs": ["playwright-report", "test-results", "blob-reports"],
"cache": false
},
"test:integration": {
"dependsOn": ["sit-onyx#build", "build"],
"outputs": ["playwright-report", "test-results"]
"outputs": ["playwright-report", "test-results", "blob-reports"],
"cache": false
},
"turbo:dev": {
"dependsOn": ["^build"],
Expand Down

0 comments on commit 62aca04

Please sign in to comment.