From 7eec97aab3476ea0094766dec958e2a0372feac3 Mon Sep 17 00:00:00 2001 From: Timo Tijhof Date: Fri, 12 Jan 2018 18:09:42 +0000 Subject: [PATCH] Build: Add "-debug" suffix to name of karma debug tasks Ref gh-3922 Close gh-3936 --- Gruntfile.js | 29 ++++++++++++++++------------- 1 file changed, 16 insertions(+), 13 deletions(-) diff --git a/Gruntfile.js b/Gruntfile.js index 431e87557..096370a4f 100644 --- a/Gruntfile.js +++ b/Gruntfile.js @@ -211,22 +211,25 @@ module.exports = function( grunt ) { autoWatch: false, concurrency: 3, captureTimeout: 20 * 1000, - - // To debug tests with Karma: - // - Run 'grunt karma:chrome' or 'grunt karma:firefox' - // (any karma subtask that has singleRun=false) - // - Press "Debug" in the opened browser window. - singleRun: false - }, - main: { - browsers: [ "ChromeHeadless" ], singleRun: true }, - chrome: { - browsers: [ "Chrome" ] + main: { + browsers: [ "ChromeHeadless" ] }, - firefox: { - browsers: [ "Firefox" ] + + // To debug tests with Karma: + // 1. Run 'grunt karma:chrome-debug' or 'grunt karma:firefox-debug' + // (any karma subtask that has singleRun=false) + // 2. Press "Debug" in the opened browser window to start + // the tests. Unlike the other karma tasks, the debug task will + // keep the browser window open. + "chrome-debug": { + browsers: [ "Chrome" ], + singleRun: false + }, + "firefox-debug": { + browsers: [ "Firefox" ], + singleRun: false } }, watch: {