From b4a5a5bbee6625798f204d623f9731a0628dff3a Mon Sep 17 00:00:00 2001 From: Hallie Swan <26949006+hallieswan@users.noreply.github.com> Date: Mon, 8 Jan 2024 10:09:21 -0800 Subject: [PATCH] SWC-6621: add descriptive message to troubleshoot error before e2e tests start running --- playwright.config.ts | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/playwright.config.ts b/playwright.config.ts index 0b8e128a4a..515d58fcbb 100644 --- a/playwright.config.ts +++ b/playwright.config.ts @@ -90,8 +90,11 @@ export default defineConfig({ // }, ], webServer: { - command: process.env.CI ? '' : 'mvn gwt:run', + command: process.env.CI + ? 'echo SWC docker container is not running' + : 'mvn gwt:run', url: baseURL, reuseExistingServer: true, // on CI, will use the tomcat server + stdout: 'pipe', }, })