-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathplaywright.config.ts
77 lines (74 loc) · 2.14 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
// playwright.config.ts
import { defineConfig, devices } from '@playwright/test';
module.exports = defineConfig({
testDir: "./tests",
/* Run tests in files in parallel */
fullyParallel: true,
/* Fail the build on CI if you accidentally left test.only in the source code. */
forbidOnly: !!process.env.CI,
/* Retry on CI only */
retries: 4, // Set the number of retries for all projects
timeout: 5 * 60 * 1000, // How long before a test fails due to running for too long
expect: {
timeout: 60 * 1000,
}, // How long an individual expect() function will fail
reportSlowTests: null,
workers: process.env.FUNCTIONAL_TESTS_WORKERS ? 5 : 5,
// The number of tests that can run in parallel
reporter: process.env.CI ? "html" : "html",
// How the tests will be reported, see playwright.dev reporters for more.
projects: [
{
name: "chromium",
use: {
...devices["Desktop Chrome"],
channel: "chrome", // Desktop Chrome
trace: "retain-on-first-failure", // Gives a playwright trace on failure
javaScriptEnabled: true, // Enables Javascript in the browser
},
},
{
name: "firefox",
use: {
...devices["Desktop Firefox"], // Desktop firefox
screenshot: "off", // Decides whether it screenshots on failure
trace: "retain-on-first-failure",
javaScriptEnabled: true,
},
},
{
name: "webkit",
use: {
...devices["Desktop Safari"], // Desktop Safari
screenshot: "off",
trace: "retain-on-first-failure",
javaScriptEnabled: true,
},
},
{
name: "MobileChrome",
use: {
...devices["Pixel 5"], // Google pixel 5 Chrome
screenshot: "only-on-failure",
trace: "off",
},
},
{
name: "MobileSafari",
use: {
...devices["iPhone 12"], // iPhone 12 Safari
screenshot: "only-on-failure",
trace: "off",
},
},
{
name: "MicrosoftEdge",
use: {
...devices["Desktop Edge"], // MS Edge desktop
channel: "msedge",
screenshot: "only-on-failure",
trace: "off",
},
},
],
});