-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathplaywright.config.ts
More file actions
66 lines (64 loc) · 1.66 KB
/
Copy pathplaywright.config.ts
File metadata and controls
66 lines (64 loc) · 1.66 KB
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
import { defineConfig, devices } from "@playwright/test"
const baseURL = process.env.PLAYWRIGHT_BASE_URL || "http://127.0.0.1:3000"
const isLocalBaseURL = /^https?:\/\/(127\.0\.0\.1|localhost)(:\d+)?$/.test(
baseURL
)
const shouldStartWebServer =
isLocalBaseURL && process.env.PLAYWRIGHT_SKIP_WEB_SERVER !== "1"
export default defineConfig({
testDir: "./tests/critical-flows",
outputDir: "test-results/critical-flows",
fullyParallel: false,
forbidOnly: Boolean(process.env.CI),
retries: process.env.CI ? 2 : 0,
workers: process.env.CI ? 2 : 1,
timeout: 60_000,
expect: {
timeout: 10_000,
},
reporter: [
["list"],
["html", { open: "never", outputFolder: "playwright-report" }],
],
use: {
baseURL,
screenshot: "only-on-failure",
trace: "retain-on-failure",
video: "retain-on-failure",
},
projects: [
{
name: "desktop-chromium",
use: { ...devices["Desktop Chrome"] },
},
{
name: "mobile-chromium",
use: { ...devices["Pixel 7"] },
},
{
name: "desktop-webkit",
use: { ...devices["Desktop Safari"] },
},
{
name: "mobile-webkit",
use: { ...devices["iPhone 15"] },
},
],
webServer: shouldStartWebServer
? {
command:
process.env.PLAYWRIGHT_WEB_SERVER_COMMAND ||
(process.env.CI
? "pnpm start --hostname 127.0.0.1"
: "pnpm dev --hostname 127.0.0.1"),
env: {
...process.env,
CRITICAL_FLOW_TESTING: "1",
NEXT_PUBLIC_DEFAULT_SITE_URL: baseURL,
},
url: baseURL,
reuseExistingServer: !process.env.CI,
timeout: 180_000,
}
: undefined,
})