Fixed PlayWright config

no issue

Using multiple workers could cause Stripe to be removed from one test while another test was using it.
This commit is contained in:
Sam Lord 2022-11-24 18:16:43 +00:00
parent 8b80233ae6
commit 7e02568cec

View File

@ -6,7 +6,8 @@ const config = {
use: { use: {
// Use a single browser since we can't simultaneously test multiple browsers // Use a single browser since we can't simultaneously test multiple browsers
browserName: 'chromium', browserName: 'chromium',
baseURL: process.env.TEST_URL ?? 'http://localhost:2368' baseURL: process.env.TEST_URL ?? 'http://localhost:2368',
headless: false
} }
}; };