mirror of
https://git.freebsd.org/ports.git
synced 2025-06-23 21:50:32 -04:00
11 lines
796 B
TypeScript
11 lines
796 B
TypeScript
--- electron/spec-main/webview-spec.ts.orig 2022-01-26 19:03:46 UTC
|
|
+++ electron/spec-main/webview-spec.ts
|
|
@@ -433,7 +433,7 @@ describe('<webview> tag', function () {
|
|
|
|
// FIXME(zcbenz): Fullscreen events do not work on Linux.
|
|
// This test is flaky on arm64 macOS.
|
|
- ifit(process.platform !== 'linux' && process.arch !== 'arm64')('exiting fullscreen should unfullscreen window', async () => {
|
|
+ ifit((process.platform !== 'linux' && process.platform !== 'freebsd') && process.arch !== 'arm64')('exiting fullscreen should unfullscreen window', async () => {
|
|
const [w, webview] = await loadWebViewWindow();
|
|
const enterFullScreen = emittedOnce(w, 'enter-full-screen');
|
|
await webview.executeJavaScript('document.getElementById("div").requestFullscreen()', true);
|