We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent d83e240 commit ff50b55Copy full SHA for ff50b55
playwright.config.js
@@ -1,6 +1,5 @@
1
"use strict";
2
3
-const MAX_RETRIES = 3;
4
const isCI = process.env.CI === "true";
5
6
/** @type { import('@playwright/test').PlaywrightTestConfig} */
@@ -11,7 +10,7 @@ module.exports = {
11
10
snapshotPathTemplate: "./test/e2e/__snapshots__/{testFilePath}/{arg}{ext}",
12
fullyParallel: false,
13
forbidOnly: isCI,
14
- retries: isCI ? MAX_RETRIES : 0,
+ retries: 0,
15
expect: {
16
toHaveScreenshot: {
17
maxDiffPixelRatio: 0.1,
@@ -29,6 +28,7 @@ module.exports = {
29
28
{
30
name: "chromium",
31
use: {
+ headless: false,
32
browserName: "chromium",
33
},
34
0 commit comments