forked from commercelayer/mfe-checkout
-
Notifications
You must be signed in to change notification settings - Fork 0
/
playwright.config.ts
68 lines (62 loc) · 2 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
import { PlaywrightTestConfig, devices } from "@playwright/test"
import dotenv from "dotenv"
import path from "path"
dotenv.config({ path: path.resolve(__dirname, "../../.env.local") })
// Reference: https://playwright.dev/docs/test-configuration
const config: PlaywrightTestConfig = {
// Timeout per test
timeout: 120 * 1000,
// Test directory
testDir: "specs/e2e",
// If a test fails, retry it additional 2 times
retries: 0,
// Artifacts folder where screenshots, videos, and traces are stored.
outputDir: "test-results/",
workers: 1,
maxFailures: 2,
// Run your local dev server before starting the tests:
// https://playwright.dev/docs/test-advanced#launching-a-development-web-server-during-the-tests
webServer: {
command: "pnpm run dev",
port: 3000,
timeout: 120 * 1000,
reuseExistingServer: !process.env.CI,
},
use: {
// Retry a test if its failing with enabled tracing. This allows you to analyse the DOM, console logs, network traffic etc.
// More information: https://playwright.dev/docs/trace-viewer
trace: "retry-with-trace",
headless: false,
viewport: { width: 1280, height: 720 },
ignoreHTTPSErrors: true,
// Artifacts
screenshot: "only-on-failure",
video: "retry-with-video"
},
projects: [
{
name: "Chromium",
use: {
// Configure the browser to use.
browserName: "chromium",
// Any Chromium-specific options.
viewport: { width: 1200, height: 900 },
baseURL: `${process.env.E2E_BASE_PROTOCOL}:${process.env.E2E_BASE_URL}:${process.env.E2E_BASE_PORT}`,
launchOptions: {
// logger: {
// isEnabled: (name, severity) => true,
// log: (name, severity, message, args) =>
// console.log(name, severity, message, args),
// },
// slowMo: 100,
// devtools: true,
},
},
},
// {
// name: "Mobile Safari",
// use: devices["iPhone 12"],
// },
],
}
export default config