From 246a9c13728573ad4617a9f58723655ac8341e39 Mon Sep 17 00:00:00 2001 From: Tim Perry Date: Sat, 16 Nov 2019 11:59:08 +0100 Subject: [PATCH] Detect the new chromium-based MS Edge (#60) --- lib/browsers.js | 10 ++++++++++ 1 file changed, 10 insertions(+) diff --git a/lib/browsers.js b/lib/browsers.js index f0a9db8..096aa54 100644 --- a/lib/browsers.js +++ b/lib/browsers.js @@ -106,6 +106,16 @@ exports.ie = { } } +exports.msedge = { + bin: 'msedge.exe', + + find: function () { + this.programFiles('Microsoft\\Edge Beta\\Application') + this.programFiles('Microsoft\\Edge\\Application') + this.startMenu() + } +} + exports.maxthon = { bin: 'Maxthon.exe',