From eda75fbfd528875bb23d3eb07cb3afb689d51829 Mon Sep 17 00:00:00 2001 From: tobisek Date: Sun, 15 Nov 2015 15:03:43 +0200 Subject: [PATCH] added default chrome path for Mac OS X --- tests/webTestServer.ts | 3 +++ 1 file changed, 3 insertions(+) diff --git a/tests/webTestServer.ts b/tests/webTestServer.ts index 6bd15359e3f..dab552e2619 100644 --- a/tests/webTestServer.ts +++ b/tests/webTestServer.ts @@ -269,6 +269,9 @@ if ((browser && browser === 'chrome')) { case "win64": defaultChromePath = "C:/Program Files (x86)/Google/Chrome/Application/chrome.exe"; break; + case "darwin": + defaultChromePath = "/Applications/Google Chrome.app/Contents/MacOS/Google Chrome"; + break; case "linux": defaultChromePath = "/opt/google/chrome/chrome" break;