spec: disable flaky fullscreen test (#30141)

This commit is contained in:
Robo 2021-07-14 15:26:09 -07:00 committed by GitHub
parent a855aa34d9
commit 4931c055a9
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -4204,7 +4204,8 @@ describe('BrowserWindow module', () => {
expect(w.isFullScreen()).to.be.false('isFullScreen');
});
ifit(process.arch === 'x64')('multiple windows inherit correct fullscreen state', async () => {
// FIXME: https://github.com/electron/electron/issues/30140
xit('multiple windows inherit correct fullscreen state', async () => {
const w = new BrowserWindow();
const enterFullScreen = emittedOnce(w, 'enter-full-screen');
w.setFullScreen(true);