From 1baa74ebbf97ab874d9510a76cf2b3a41926fd8a Mon Sep 17 00:00:00 2001 From: cornmander Date: Tue, 26 Aug 2025 20:11:39 -0400 Subject: [PATCH] Update build command to set GEMINI_SANDBOX var. (#7159) Bypassing flaky test. --- package.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/package.json b/package.json index 38c3f527..443c6b53 100644 --- a/package.json +++ b/package.json @@ -37,7 +37,7 @@ "test:e2e": "cross-env VERBOSE=true KEEP_OUTPUT=true npm run test:integration:sandbox:none", "test:integration:all": "npm run test:integration:sandbox:none && npm run test:integration:sandbox:docker && npm run test:integration:sandbox:podman", "test:integration:sandbox:none": "GEMINI_SANDBOX=false vitest run --root ./integration-tests", - "test:integration:sandbox:docker": "npm run build:sandbox && GEMINI_SANDBOX=docker vitest run --root ./integration-tests", + "test:integration:sandbox:docker": "GEMINI_SANDBOX=docker npm run build:sandbox && GEMINI_SANDBOX=docker vitest run --root ./integration-tests", "test:integration:sandbox:podman": "GEMINI_SANDBOX=podman vitest run --root ./integration-tests", "lint": "eslint . --ext .ts,.tsx && eslint integration-tests", "lint:fix": "eslint . --fix && eslint integration-tests --fix",