concurrent setup

This commit is contained in:
Elio Bischof
2024-10-16 17:11:51 +02:00
parent f1b756b721
commit c5620e6acc
2 changed files with 19 additions and 10 deletions

View File

@@ -43,11 +43,12 @@ export default defineConfig({
name: 'firefox',
use: { ...devices['Desktop Firefox'] },
},
/* TODO: webkit fails. Is this a bug?
{
name: 'webkit',
use: { ...devices['Desktop Safari'] },
},
*/
/* Test against mobile viewports. */
// {
@@ -74,7 +75,7 @@ export default defineConfig({
webServer: {
command: 'pnpm start',
url: 'http://127.0.0.1:3000',
reuseExistingServer: !process.env.CI,
reuseExistingServer: false, //!process.env.CI,
timeout: 5 * 60_000,
},
});