From a6486aad268ed164d65e84f4f5fa7d80e1b94818 Mon Sep 17 00:00:00 2001 From: Timo Tijhof Date: Mon, 12 Feb 2018 17:34:26 -0800 Subject: [PATCH] build: Add grunt target for 'karma:firefox' The 'karma:more' doesn't seem particularly useful, but the ability to run Firefox from a preset seems more useful. Especially from CI in Travis where one might want to use only one or the other. Change-Id: I522295298888e8566781d81fa14dd08368bf0ce4 --- Gruntfile.js | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Gruntfile.js b/Gruntfile.js index d1ef72f270..cb9a20d0a7 100644 --- a/Gruntfile.js +++ b/Gruntfile.js @@ -98,8 +98,8 @@ module.exports = function ( grunt ) { chromium: { browsers: [ 'Chromium' ] }, - more: { - browsers: [ 'Chrome', 'Firefox' ] + firefox: { + browsers: [ 'Firefox' ] } }, copy: { -- 2.20.1