-
Notifications
You must be signed in to change notification settings - Fork 0
/
playwright.config.ts
75 lines (69 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
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
import { type PlaywrightTestConfig, devices } from "@playwright/test";
import { isCIEnvironment } from "~/utils/misc/environment";
const getWebServerUrl = (): string => {
if (isCIEnvironment()) {
if (!process.env["BASE_URL"]) {
throw new Error("BASE_URL environment variable is not set.");
}
return process.env["BASE_URL"];
}
return "http://localhost:3000";
};
const config: PlaywrightTestConfig = {
fullyParallel: true,
testDir: "./e2e/",
forbidOnly: isCIEnvironment(),
reporter: [
[
"html",
{
outputFolder: "./e2e/report"
}
]
],
retries: isCIEnvironment() ? 1 : 0,
use: {
baseURL: getWebServerUrl(),
video: "retain-on-failure",
trace: "retain-on-failure"
},
outputDir: "./e2e/results/",
webServer: {
command: "pnpm preview",
url: getWebServerUrl(),
reuseExistingServer: true
},
projects: [
{
name: "Desktop Chromium",
use: {
...devices["Desktop Chrome"]
}
},
{
name: "Desktop Firefox",
use: {
...devices["Desktop Firefox"]
}
},
{
name: "Desktop Safari",
use: {
...devices["Desktop Safari"]
}
},
{
name: "Mobile Chrome",
use: {
...devices["Pixel 5"]
}
},
{
name: "Mobile Safari",
use: {
...devices["iPhone 12"]
}
}
]
};
export default config;