-
Notifications
You must be signed in to change notification settings - Fork 13
Expand file tree
/
Copy pathplaywright.config.ts
More file actions
114 lines (104 loc) · 3.4 KB
/
playwright.config.ts
File metadata and controls
114 lines (104 loc) · 3.4 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
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
import { defineConfig, devices } from "@playwright/test";
import path from 'path';
import dotenv from 'dotenv';
// Read from .env.playwright
dotenv.config({ path: path.resolve(__dirname, '.env.playwright') });
// Use process.env.PORT if set, otherwise fallback to port 3000
const PORT = process.env.PORT || 3000;
// run tests against env value if set, otherwise fallback to localhost
const baseURL = process.env.PLAYWRIGHT_TEST_URL || `http://localhost:${PORT}`;
const baseURLAPI = `${baseURL}/api/credentials/`
// Reference: https://playwright.dev/docs/test-configuration
export default defineConfig({
// Timeout per test
timeout: 30 * 1000,
// Test directory
testDir: path.join(__dirname, "tests"),
// If a test fails, retry it additional 2 times
retries: 2,
// Artifacts folder where screenshots, videos, and traces are stored.
outputDir: "test-results/",
// Run your local dev server before starting the tests:
// https://playwright.dev/docs/test-advanced#launching-a-development-web-server-during-the-tests
// can have playwright fire up a server against which to test, say for CI
// but for the verifierPlus api tests you'd need a running mongo instance too
/*webServer: {
command: "npm run dev",
url: baseURL,
timeout: 120 * 1000,
reuseExistingServer: !process.env.CI,
},*/
use: {
// Use baseURL so to make navigations relative.
// More information: https://playwright.dev/docs/api/class-testoptions#test-options-base-url
baseURL,
// Retry a test if its failing with enabled tracing. This allows you to analyze the DOM, console logs, network traffic etc.
// More information: https://playwright.dev/docs/trace-viewer
trace: "retry-with-trace",
// All available context options: https://playwright.dev/docs/api/class-browser#browser-new-context
// contextOptions: {
// ignoreHTTPSErrors: true,
// },
},
projects: [
{
name: 'API',
testMatch: /.*api.spec.ts/,
retries: 0,
use: {
extraHTTPHeaders: {
// not sure if this header is really needed
'Content-Type': 'application/json'
}
}
},
{
name: "DesktopChrome",
testIgnore: /.*api.spec.ts/,
use: {
...devices["Desktop Chrome"],
},
expect: {
toHaveScreenshot: {
maxDiffPixels: 2000, // Allow up to 2000 pixels to be different
maxDiffPixelRatio: 0.1, // Allow up to 10% of pixels to be different
//threshold: 0.1, // Adjust color difference tolerance
},
},
},
// {
// name: 'Desktop Firefox',
//. testIgnore: /.*api.spec.ts/,
// use: {
// ...devices['Desktop Firefox'],
// },
// },
// {
// name: 'Desktop Safari',
//. testIgnore: /.*api.spec.ts/,
// use: {
// ...devices['Desktop Safari'],
// },
// },
// Test against mobile viewports.
{
name: "MobileChrome",
testIgnore: /.*api.spec.ts/,
use: {
...devices["Pixel 5"],
},
expect: {
toHaveScreenshot: {
maxDiffPixels: 2000, // Allow up to 2000 pixels to be different
maxDiffPixelRatio: 0.1, // Allow up to 10% of pixels to be different
//threshold: 0.1, // Adjust color difference tolerance
},
},
},
// {
// name: "MobileSafari",
// testIgnore: /.*api.spec.ts/,
// use: devices["iPhone 12"],
// },
],
});