From 0eb703975bd9856af89bafaa14d42b585372b6bc Mon Sep 17 00:00:00 2001 From: Pranitshriwas Date: Tue, 15 Jul 2025 15:17:04 +0530 Subject: [PATCH 1/3] Update karma.conf.js --- karma.conf.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/karma.conf.js b/karma.conf.js index a07592b..4b4a6db 100644 --- a/karma.conf.js +++ b/karma.conf.js @@ -21,7 +21,7 @@ module.exports = function (config) { }, clearContext: false // leave Jasmine Spec Runner output visible in browser }, - jasmineHtmlReporter: { + jasmineHtmlReporter: ( suppressAll: true // removes the duplicated traces }, coverageReporter: { From 5c077699319eab1875d3f709c34a1fe4191f705d Mon Sep 17 00:00:00 2001 From: Pranitshriwas Date: Tue, 15 Jul 2025 15:33:32 +0530 Subject: [PATCH 2/3] Update karma.conf.js --- karma.conf.js | 15 ++++----------- 1 file changed, 4 insertions(+), 11 deletions(-) diff --git a/karma.conf.js b/karma.conf.js index 4b4a6db..4103541 100644 --- a/karma.conf.js +++ b/karma.conf.js @@ -13,17 +13,10 @@ module.exports = function (config) { require('@angular-devkit/build-angular/plugins/karma') ], client: { - jasmine: { - // you can add configuration options for Jasmine here - // the possible options are listed at https://jasmine.github.io/api/edge/Configuration.html - // for example, you can disable the random execution with `random: false` - // or set a specific seed with `seed: 4321` - }, - clearContext: false // leave Jasmine Spec Runner output visible in browser - }, - jasmineHtmlReporter: ( - suppressAll: true // removes the duplicated traces - }, + clearContext: false, + captureConsole: false, + suppressAll: true // ✅ correct placement +}, coverageReporter: { dir: require('path').join(__dirname, './coverage/kickstart-angular'), subdir: '.', From 27db0825bac4a8790f6f1e2630bbbea0cebdd674 Mon Sep 17 00:00:00 2001 From: Pranitshriwas Date: Tue, 15 Jul 2025 15:38:26 +0530 Subject: [PATCH 3/3] Update karma.conf.js --- karma.conf.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/karma.conf.js b/karma.conf.js index 4103541..f7990af 100644 --- a/karma.conf.js +++ b/karma.conf.js @@ -30,7 +30,7 @@ module.exports = function (config) { colors: true, logLevel: config.LOG_INFO, autoWatch: true, - browsers: ['Chrome'], + browsers: ['ChromeHeadless'], singleRun: false, restartOnFileChange: true });