Browse Source

test: retry beforeunload test (#23576)

Jeremy Apthorp 4 years ago
parent
commit
8bbb68be79
1 changed files with 4 additions and 1 deletions
  1. 4 1
      spec-main/api-web-contents-spec.ts

+ 4 - 1
spec-main/api-web-contents-spec.ts

@@ -41,7 +41,10 @@ describe('webContents module', () => {
     });
   });
 
-  describe('will-prevent-unload event', () => {
+  describe('will-prevent-unload event', function () {
+    // TODO(nornagon): de-flake this properly
+    this.retries(3);
+
     afterEach(closeAllWindows);
     it('does not emit if beforeunload returns undefined', (done) => {
       const w = new BrowserWindow({ show: false });