From 381ebc00732fc9314637785a5a08378fec5c4279 Mon Sep 17 00:00:00 2001 From: Phil Rzewski Date: Thu, 26 Oct 2023 15:56:13 -0700 Subject: [PATCH] Add --skip-nx-cache when running "yarn test" --- package.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/package.json b/package.json index 7c43ca8fd1..1b48d6433a 100644 --- a/package.json +++ b/package.json @@ -12,7 +12,7 @@ "build-affected": "nx affected --target=build", "build": "nx run-many -t build --all", "lint": "nx run-many -t lint --all --exclude zui-player", - "test": "nx run-many -t test --all --exclude zui-player", + "test": "nx run-many -t test --all --exclude zui-player --skip-nx-cache", "start": "nx start zui", "e2e": "NODE_ENV=production nx test zui-player" },