fix(playwright.config.js): correct baseURL typo from 'http:/localhost:3080' to 'http://localhost:3080'

This commit is contained in:
Daniel Avila 2023-04-06 18:31:02 -04:00
parent 4510f04073
commit a56c8696d3

View file

@ -20,7 +20,7 @@ export default defineConfig({
], ],
/* Shared settings for all the projects below. See https://playwright.dev/docs/api/class-testoptions. */ /* Shared settings for all the projects below. See https://playwright.dev/docs/api/class-testoptions. */
use: { use: {
baseURL: 'http:/localhost:3080', baseURL: 'http://localhost:3080',
video: 'on-first-retry', video: 'on-first-retry',
trace: 'retain-on-failure', trace: 'retain-on-failure',
headless: true, headless: true,