From 4614b4a1859999326df6ab6f746babbca343d19d Mon Sep 17 00:00:00 2001 From: Kyle Spearrin Date: Mon, 7 May 2018 12:37:36 -0400 Subject: [PATCH] No edge on appveyor --- spec/support/karma.conf.js | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/spec/support/karma.conf.js b/spec/support/karma.conf.js index d177dd699e..d23eff033c 100644 --- a/spec/support/karma.conf.js +++ b/spec/support/karma.conf.js @@ -73,6 +73,10 @@ module.exports = (config) => { removeBrowser('Opera'); removeBrowser('SafariTechPreview'); + if (process.env.APPVEYOR === 'True') { + removeBrowser('Edge'); + } + return result; } },