From 57c7919b852870b368107115c07501b8945c36f8 Mon Sep 17 00:00:00 2001 From: Erick Zhao Date: Fri, 29 Apr 2022 12:00:24 -0700 Subject: [PATCH] test: use newer version of Electron --- test/index.test.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/test/index.test.js b/test/index.test.js index 8b098d2..ec59aef 100644 --- a/test/index.test.js +++ b/test/index.test.js @@ -21,7 +21,7 @@ describe('electron-installer-dmg', () => { before(async function downloadElectron() { this.timeout(2 * MINUTES_IN_MS); - const zipPath = await download('2.0.4'); + const zipPath = await download('18.2.0'); await unzip(zipPath, { dir: appPath }); });