From 566e88f52a015f7d1328e56ec45b610674d8c2d3 Mon Sep 17 00:00:00 2001 From: Kyle Spearrin Date: Thu, 23 Jul 2020 17:23:38 -0400 Subject: [PATCH] only run chrome tests on github action --- spec/support/karma.conf.js | 1 + 1 file changed, 1 insertion(+) diff --git a/spec/support/karma.conf.js b/spec/support/karma.conf.js index 8ba0ec4170a..4ec04a07df7 100644 --- a/spec/support/karma.conf.js +++ b/spec/support/karma.conf.js @@ -82,6 +82,7 @@ module.exports = (config) => { } if (githubAction) { removeBrowser('Firefox'); + removeBrowser('Safari'); } return result;