-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathplaywright.config.ts
79 lines (72 loc) · 1.89 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
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
import { defineConfig, devices, PlaywrightTestConfig } from '@playwright/test'
type OptionsType = {
baseURL: string
timeout: number
server: PlaywrightTestConfig['webServer'] | undefined
}
const createOptions = (): OptionsType => {
const timeout = process.env.CI ? 30 * 1000 : 120 * 2 * 1000
const baseURL = `http://localhost:3000`
if (process.env.CI) {
return {
baseURL,
timeout: 30 * 1000,
server: undefined,
}
}
if (process.env.FAST) {
return {
baseURL,
timeout: 30 * 1000,
server: {
command: 'npm run start',
port: 3000,
timeout: 120 * 1000,
reuseExistingServer: false,
stderr: 'pipe',
stdout: 'pipe',
},
}
}
// Local dev server
return {
baseURL,
timeout,
server: {
command: 'npm run dev-ingen-dekorator',
port: 3000,
timeout: 120 * 1000, // Wait up to 2 minutes for the server to start
reuseExistingServer: true,
},
}
}
const opts = createOptions()
export default defineConfig({
testDir: './playwright',
timeout: 30000,
fullyParallel: true,
forbidOnly: !!process.env.CI,
retries: 0,
workers: process.env.CI ? 1 : undefined,
reporter: process.env.CI ? 'blob' : 'html',
use: {
baseURL: opts.baseURL,
navigationTimeout: 60000,
trace: 'on-first-retry',
},
projects: [
{
name: 'chromium',
use: { ...devices['Desktop Chrome'] },
},
...(process.env.CI
? [
{
name: 'firefox',
use: { ...devices['Desktop Firefox'] },
},
]
: []),
],
webServer: opts.server,
})