Skip to content

Commit 04355b8

Browse files
committed
ci: improve e2e tests
1 parent b137cc1 commit 04355b8

File tree

1 file changed

+5
-5
lines changed

1 file changed

+5
-5
lines changed

playwright.config.ts

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@ import type { PlaywrightTestConfig } from '@playwright/test';
22
import { devices } from '@playwright/test';
33

44
const targetProject = process.argv.find((arg) => arg.startsWith('--project='))?.split('=')[1];
5-
const PORTS = {
5+
const PORTS: Record<string, number> = {
66
chrome: 7080,
77
firefox: 7081,
88
webkit: 7082,
@@ -30,10 +30,10 @@ const config: PlaywrightTestConfig = {
3030
name: 'chrome',
3131
use: devices['Desktop Chrome'],
3232
},
33-
{
34-
name: 'firefox',
35-
use: devices['Desktop Firefox'],
36-
},
33+
// {
34+
// name: 'firefox',
35+
// use: devices['Desktop Firefox'],
36+
// },
3737
{
3838
name: 'webkit',
3939
use: devices['Desktop Safari'],

0 commit comments

Comments
 (0)