Skip to content

Commit

Permalink
Fixed syntax errors
Browse files Browse the repository at this point in the history
  • Loading branch information
brok3turtl3 committed Oct 17, 2024
1 parent 54d55d4 commit fe214ba
Showing 1 changed file with 10 additions and 13 deletions.
23 changes: 10 additions & 13 deletions angular-resources-page/karma.conf.js
Original file line number Diff line number Diff line change
Expand Up @@ -13,11 +13,11 @@ export default function (config) {
basePath: '',
frameworks: ['jasmine', buildAngularPlugin],
plugins: [
karma-jasmine,
karma-chrome-launcher,
karma-jasmine-html-reporter,
karma-coverage,
@angular-devkit/build-angular/plugins/karma
karmaJasmine,
karmaChromeLauncher,
karmaJasmineHtmlReporter,
karmaCoverage,
buildAngularPlugin,
],
client: {
jasmine: {
Expand All @@ -26,18 +26,15 @@ export default function (config) {
// 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
clearContext: false, // leave Jasmine Spec Runner output visible in browser
},
jasmineHtmlReporter: {
suppressAll: true // removes the duplicated traces
suppressAll: true, // removes the duplicated traces
},
coverageReporter: {
dir: join(__dirname, './coverage/angular-contact-page'),
subdir: '.',
reporters: [
{ type: 'html' },
{ type: 'text-summary' }
]
reporters: [{ type: 'html' }, { type: 'text-summary' }],
},
reporters: ['progress', 'kjhtml'],
port: 9876,
Expand All @@ -46,6 +43,6 @@ export default function (config) {
autoWatch: true,
browsers: ['Chrome'],
singleRun: false,
restartOnFileChange: true
restartOnFileChange: true,
});
};
}

0 comments on commit fe214ba

Please sign in to comment.