This commit is contained in:
cupcakearmy 2022-07-19 21:42:21 +02:00
parent 2b52f1c73f
commit 20f0eb90a7
No known key found for this signature in database
GPG Key ID: 3235314B4D31232F
1 changed files with 2 additions and 6 deletions

View File

@ -10,10 +10,6 @@ const config: PlaywrightTestConfig = {
outputDir: './test-results',
testDir: './test',
// actionTimeout: 10_000,
},
outputDir: './test-results',
testDir: './test',
webServer: {
command: 'pnpm run ci:server',
port: 1234,
@ -21,14 +17,14 @@ const config: PlaywrightTestConfig = {
},
projects: [
{ name: 'chrome', use: { ...devices['Desktop Chrome'] } },
{ name: 'firefox', use: { ...devices['Desktop Firefox'] } ,
{ name: 'firefox', use: { ...devices['Desktop Firefox'] } },
{ name: 'safari', use: { ...devices['Desktop Safari'] } },
{
name: 'local',
use: { ...devices['Desktop Chrome'] },
// testMatch: 'file/too-big.spec.ts',
},
]
],
}
export default config