Skip to content

Commit a334ff2

Browse files
authored
fix(e2e): Workaround for parallel.test.ts (opennextjs#1031)
1 parent 89336e4 commit a334ff2

File tree

1 file changed

+10
-0
lines changed

1 file changed

+10
-0
lines changed

packages/tests-e2e/playwright.config.js

Lines changed: 10 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -31,4 +31,14 @@ export default defineConfig({
3131
},
3232
},
3333
],
34+
// Workaround for https://github.com/microsoft/playwright/issues/36371
35+
// It seems to be failing in our Github action
36+
// https://github.com/opennextjs/opennextjs-aws/actions/runs/19116336570/job/54627469525#step:15:171
37+
use: {
38+
launchOptions: {
39+
args: [
40+
"--disable-features=AcceptCHFrame,AutoExpandDetailsElement,AvoidUnnecessaryBeforeUnloadCheckSync,CertificateTransparencyComponentUpdater,DestroyProfileOnBrowserClose,DialMediaRouteProvider,ExtensionManifestV2Disabled,GlobalMediaControls,HttpsUpgrades,ImprovedCookieControls,LazyFrameLoading,LensOverlay,MediaRouter,PaintHolding,ThirdPartyStoragePartitioning,Translate,DeferRendererTasksAfterInput",
41+
],
42+
},
43+
},
3444
});

0 commit comments

Comments
 (0)