Skip to content

Commit ff50b55

Browse files
committed
chore: disable retries
1 parent d83e240 commit ff50b55

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

playwright.config.js

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,5 @@
11
"use strict";
22

3-
const MAX_RETRIES = 3;
43
const isCI = process.env.CI === "true";
54

65
/** @type { import('@playwright/test').PlaywrightTestConfig} */
@@ -11,7 +10,7 @@ module.exports = {
1110
snapshotPathTemplate: "./test/e2e/__snapshots__/{testFilePath}/{arg}{ext}",
1211
fullyParallel: false,
1312
forbidOnly: isCI,
14-
retries: isCI ? MAX_RETRIES : 0,
13+
retries: 0,
1514
expect: {
1615
toHaveScreenshot: {
1716
maxDiffPixelRatio: 0.1,
@@ -29,6 +28,7 @@ module.exports = {
2928
{
3029
name: "chromium",
3130
use: {
31+
headless: false,
3232
browserName: "chromium",
3333
},
3434
},

0 commit comments

Comments
 (0)