From 62aca04c7d81e1c271974975d1e86f84f086e19f Mon Sep 17 00:00:00 2001 From: Jonathan Carle Date: Fri, 13 Dec 2024 12:59:18 +0100 Subject: [PATCH] fix: don't cache tests --- turbo.json | 9 ++++++--- 1 file changed, 6 insertions(+), 3 deletions(-) diff --git a/turbo.json b/turbo.json index 1428acbac0..cef8c656bd 100644 --- a/turbo.json +++ b/turbo.json @@ -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"],