test: remove outdated disabled test (#49196)

This commit is contained in:
Niklas Wenzel
2026-01-05 22:27:01 +01:00
committed by GitHub
parent a1f0ef80d4
commit 2ab56adbbd

View File

@@ -2135,12 +2135,6 @@ describe('BrowserWindow module', () => {
expect(w.fullScreen).to.be.true();
});
// FIXME: this test needs to be fixed and re-enabled.
it.skip('does not go fullscreen if roundedCorners are enabled', async () => {
w = new BrowserWindow({ frame: false, roundedCorners: false, fullscreen: true });
expect(w.fullScreen).to.be.false();
});
it('can be changed', () => {
w.fullScreen = false;
expect(w.fullScreen).to.be.false();