From af493fb73eb12f5aedfdada3b85d5b3c1ac45b92 Mon Sep 17 00:00:00 2001 From: Test User Date: Wed, 31 Dec 2025 21:21:35 -0500 Subject: [PATCH] feat: simulate containerized environment for testing - Added an environment variable to simulate a containerized environment, allowing the application to skip sandbox confirmation dialogs during testing. - This change aims to streamline the testing process by reducing unnecessary user interactions while ensuring the application behaves as expected in a containerized setup. --- apps/ui/playwright.config.ts | 2 ++ 1 file changed, 2 insertions(+) diff --git a/apps/ui/playwright.config.ts b/apps/ui/playwright.config.ts index 80ba9af3..5ea2fb7b 100644 --- a/apps/ui/playwright.config.ts +++ b/apps/ui/playwright.config.ts @@ -49,6 +49,8 @@ export default defineConfig({ // Hide the API key banner to reduce log noise AUTOMAKER_HIDE_API_KEY: 'true', // No ALLOWED_ROOT_DIRECTORY restriction - allow all paths for testing + // Simulate containerized environment to skip sandbox confirmation dialogs + IS_CONTAINERIZED: 'true', }, }, // Frontend Vite dev server