Skip to content

Commit a1106e5

Browse files
authored
test: disable test that fails on Electron (#6837)
This test is failing since ee7e38c Dashboard: https://devops.aslushnikov.com/flakiness2.html#browser=electron&platform=Ubuntu+20.04&timestamp=1622444340000
1 parent c9613b3 commit a1106e5

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

tests/page/page-autowaiting-no-hang.spec.ts

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,8 @@ it('clicking on links which do not commit navigation', async ({page, server, htt
2323
await page.click('a');
2424
});
2525

26-
it('calling window.stop async', async ({page, server}) => {
26+
it('calling window.stop async', async ({page, server, isElectron}) => {
27+
it.fail(isElectron);
2728
server.setRoute('/empty.html', async (req, res) => {});
2829
await page.evaluate(url => {
2930
window.location.href = url;

0 commit comments

Comments
 (0)