Skip to content

Commit

Permalink
remove teamcity reporter
Browse files Browse the repository at this point in the history
  • Loading branch information
pjmolina committed Jun 6, 2024
1 parent c055717 commit 79036c3
Show file tree
Hide file tree
Showing 3 changed files with 9 additions and 26 deletions.
17 changes: 0 additions & 17 deletions package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

1 change: 0 additions & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -83,7 +83,6 @@
"karma-coverage": "^2.2.1",
"karma-jasmine": "~5.1.0",
"karma-jasmine-html-reporter": "^2.1.0",
"karma-teamcity-reporter": "^1.1.0",
"ng-packagr": "^18.0.0",
"socket.io": ">=4.7.5",
"ts-node": "~10.9.2",
Expand Down
17 changes: 9 additions & 8 deletions projects/lux/karma.conf.js
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ module.exports = function (config) {
require('karma-chrome-launcher'),
require('karma-jasmine-html-reporter'),
require('karma-coverage'),
require('karma-teamcity-reporter'),
// require('karma-teamcity-reporter'),
require('@angular-devkit/build-angular/plugins/karma')
],
client: {
Expand All @@ -21,13 +21,17 @@ module.exports = function (config) {
reporters: [
// reporters not supporting the `file` property
{ type: 'html', subdir: 'report-html' },
{ type: 'lcov', subdir: 'report-lcov' },
{ type: 'lcov', subdir: 'report-lcov' }
// reporters supporting the `file` property, use `subdir` to directly
// output them in the `dir` directory
{ type: 'teamcity', subdir: '.', file: 'teamcity.txt' },
// { type: 'teamcity', subdir: '.', file: 'teamcity.txt' }
]
},
reporters: ['progress', 'kjhtml', 'teamcity'],
reporters: [
'progress',
'kjhtml'
//'teamcity'
],
port: 9876,
colors: true,
logLevel: config.LOG_INFO,
Expand All @@ -36,10 +40,7 @@ module.exports = function (config) {
customLaunchers: {
ChromeHeadlessCI: {
base: 'ChromeHeadless',
flags: [
'--headless',
'--no-sandbox'
]
flags: ['--headless', '--no-sandbox']
}
},
singleRun: false,
Expand Down

0 comments on commit 79036c3

Please sign in to comment.