test: disable flaky arm tests (#26046)
* tests: disable flaking test on all arm platforms * tests: disable flaky did-change-theme-color tests on WOA
This commit is contained in:
parent
c6a6f53c8d
commit
4ce7ca6cfb
3 changed files with 7 additions and 3 deletions
|
@ -7,6 +7,7 @@ import { v4 } from 'uuid';
|
|||
import { AddressInfo } from 'net';
|
||||
import { closeWindow } from './window-helpers';
|
||||
import { emittedOnce, emittedNTimes } from './events-helpers';
|
||||
import { ifdescribe } from './spec-helpers';
|
||||
|
||||
const partition = 'service-workers-spec';
|
||||
const uuid = v4();
|
||||
|
@ -65,7 +66,8 @@ describe('session.serviceWorkers', () => {
|
|||
});
|
||||
});
|
||||
|
||||
describe('getFromVersionID()', () => {
|
||||
// TODO (jkleinsc) - reenable this test once https://github.com/electron/electron/issues/26043 is resolved
|
||||
ifdescribe(!process.arch.includes('arm'))('getFromVersionID()', () => {
|
||||
it('should report the correct script url and scope', async () => {
|
||||
const eventInfo = await emittedOnce(ses.serviceWorkers, 'console-message', () => w.loadURL(`${baseUrl}/index.html`));
|
||||
const details: Electron.MessageDetails = eventInfo[1];
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue