We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent b137cc1 commit 04355b8Copy full SHA for 04355b8
playwright.config.ts
@@ -2,7 +2,7 @@ import type { PlaywrightTestConfig } from '@playwright/test';
2
import { devices } from '@playwright/test';
3
4
const targetProject = process.argv.find((arg) => arg.startsWith('--project='))?.split('=')[1];
5
-const PORTS = {
+const PORTS: Record<string, number> = {
6
chrome: 7080,
7
firefox: 7081,
8
webkit: 7082,
@@ -30,10 +30,10 @@ const config: PlaywrightTestConfig = {
30
name: 'chrome',
31
use: devices['Desktop Chrome'],
32
},
33
- {
34
- name: 'firefox',
35
- use: devices['Desktop Firefox'],
36
- },
+ // {
+ // name: 'firefox',
+ // use: devices['Desktop Firefox'],
+ // },
37
{
38
name: 'webkit',
39
use: devices['Desktop Safari'],
0 commit comments