From a56c8696d3bd124750103cdc5352021930ecdeea Mon Sep 17 00:00:00 2001 From: Daniel Avila Date: Thu, 6 Apr 2023 18:31:02 -0400 Subject: [PATCH] fix(playwright.config.js): correct baseURL typo from 'http:/localhost:3080' to 'http://localhost:3080' --- e2e/playwright.config.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/e2e/playwright.config.js b/e2e/playwright.config.js index 86bb298c0..246d4b6e6 100644 --- a/e2e/playwright.config.js +++ b/e2e/playwright.config.js @@ -20,7 +20,7 @@ export default defineConfig({ ], /* Shared settings for all the projects below. See https://playwright.dev/docs/api/class-testoptions. */ use: { - baseURL: 'http:/localhost:3080', + baseURL: 'http://localhost:3080', video: 'on-first-retry', trace: 'retain-on-failure', headless: true,