forked from navikt/flexjar-frontend
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathplaywright.config.ts
56 lines (53 loc) · 1.67 KB
/
playwright.config.ts
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
import { defineConfig, devices } from '@playwright/test'
import { PlaywrightTestConfig } from 'playwright/types/test'
const PORT = process.env.PORT || 3000
type OptionsType = { baseURL: string; timeout: number; server: PlaywrightTestConfig['webServer'] }
const opts: OptionsType =
process.env.CI || process.env.FAST
? // Github Actions runs server in a services image
{
baseURL: `http://localhost:${PORT}`,
timeout: 30 * 1000,
server: {
command: 'MOCK_BACKEND=true npm run start',
url: `http://localhost:${PORT}`,
timeout: 120 * 1000,
reuseExistingServer: !process.env.CI,
},
}
: // Local dev server
{
baseURL: `http://localhost:${PORT}`,
timeout: 60 * 1000,
server: {
command: 'npm run dev',
url: `http://localhost:${PORT}`,
timeout: 120 * 1000,
reuseExistingServer: !process.env.CI,
stderr: 'pipe',
stdout: 'pipe',
},
}
export default defineConfig({
testDir: './e2e',
expect: {
timeout: 10 * 1000,
},
timeout: opts.timeout,
fullyParallel: true,
forbidOnly: !!process.env.CI,
retries: process.env.CI ? 2 : 0,
workers: process.env.CI ? 1 : undefined,
reporter: 'html',
use: {
baseURL: opts.baseURL,
trace: 'on-first-retry',
},
webServer: opts.server,
projects: [
{
name: 'chromium',
use: { ...devices['Desktop Chrome'] },
},
],
})