From 20f0eb90a744a728c076d54f5dab4de5e41ac980 Mon Sep 17 00:00:00 2001 From: cupcakearmy Date: Tue, 19 Jul 2022 21:42:21 +0200 Subject: [PATCH] spec --- playwright.config.ts | 8 ++------ 1 file changed, 2 insertions(+), 6 deletions(-) diff --git a/playwright.config.ts b/playwright.config.ts index 67bf8ff..c2e7e78 100644 --- a/playwright.config.ts +++ b/playwright.config.ts @@ -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