-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathplaywright.config.ts
64 lines (60 loc) · 1.83 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
import { defineConfig, devices, PlaywrightTestConfig } from '@playwright/test'
const PORT = process.env.PORT || 3000
type OptionsType = { baseURL: string; timeout: number; server: PlaywrightTestConfig['webServer'] | undefined }
const opts: OptionsType = process.env.CI
? {
baseURL: `http://localhost:3000`,
timeout: 30 * 1000,
// Uses service container app
server: undefined,
}
: process.env.FAST
? {
baseURL: `http://localhost:${PORT}`,
timeout: 30 * 1000,
server: {
command: 'yarn start:e2e',
url: `http://localhost:${PORT}`,
timeout: 120 * 1000,
reuseExistingServer: false,
stderr: 'pipe',
stdout: 'pipe',
},
}
: // Local dev server
{
baseURL: `http://localhost:${PORT}`,
timeout: 120 * 2 * 1000,
server: {
command: 'NEXT_PUBLIC_RUNTIME_ENV=e2e yarn dev --turbo',
url: `http://localhost:${PORT}`,
timeout: 120 * 1000,
reuseExistingServer: true,
stderr: 'pipe',
stdout: 'pipe',
},
}
export default defineConfig({
testDir: './e2e',
fullyParallel: true,
forbidOnly: !!process.env.CI,
retries: process.env.CI ? 2 : 0,
workers: process.env.CI ? 1 : undefined,
reporter: process.env.CI ? 'blob' : 'html',
timeout: opts.timeout,
use: {
baseURL: opts.baseURL,
trace: 'on-first-retry',
},
webServer: opts.server,
projects: [
{
name: 'chromium',
use: { ...devices['Desktop Chrome'] },
},
{
name: 'firefox',
use: { ...devices['Desktop Firefox'] },
},
],
})