test: properly disable electron test (#6839)
This test is failing sinceee7e38c60dDashboard: https://devops.aslushnikov.com/flakiness2.html#browser=electron&platform=Ubuntu+20.04×tamp=1622444340000 P.S. this is a follow-up toa1106e5d4e- turns out `it.fail` is still failing in case of a timeout.
This commit is contained in:
parent
d767fc2f91
commit
251c7d8df1
|
|
@ -24,7 +24,7 @@ it('clicking on links which do not commit navigation', async ({page, server, htt
|
||||||
});
|
});
|
||||||
|
|
||||||
it('calling window.stop async', async ({page, server, isElectron}) => {
|
it('calling window.stop async', async ({page, server, isElectron}) => {
|
||||||
it.fail(isElectron);
|
it.fixme(isElectron);
|
||||||
server.setRoute('/empty.html', async (req, res) => {});
|
server.setRoute('/empty.html', async (req, res) => {});
|
||||||
await page.evaluate(url => {
|
await page.evaluate(url => {
|
||||||
window.location.href = url;
|
window.location.href = url;
|
||||||
|
|
|
||||||
Loading…
Reference in a new issue