Firefox/Chrome 未在 2000 毫秒内被杀死,发送 SIGKILL
Firefox/Chrome was not killed in 2000 ms, sending SIGKILL
在我的本地 angular(v10) 项目中 运行 ng 测试 之后,所有测试用例都成功执行并且浏览器也启动了我能够看到绿点,但在最后一刻浏览器被杀死,并在我的命令提示符中显示以下警告
karma.config.js
module.exports = function (config) {
config.set({
basePath: '',
frameworks: ['jasmine', '@angular-devkit/build-angular'],
plugins: [
'karma-jasmine',
'karma-firefox-launcher',
'karma-jasmine-html-reporter',
'karma-coverage-istanbul-reporter',
'@angular-devkit/build-angular/plugins/karma',
'karma-junit-reporter',
'karma-sonarqube-unit-reporter'
],
client: {
clearContext: false // leave Jasmine Spec Runner output visible in browser
},
coverageIstanbulReporter: {
dir: require('path').join(__dirname, './coverage'),
reports: [ 'html', 'lcovonly', 'text-summary' ],
fixWebpackSourcePaths: true
},
sonarQubeUnitReporter: {
sonarQubeVersion: 'LATEST',
outputFile: 'reports/ut_report.xml',
overrideTestDescription: true,
testPaths: ['./ng-app'],
testFilePattern: '.spec.ts',
useBrowserName: false
},
junitReporter: {
outputDir: 'angular_junit_reporter', // results will be saved as $outputDir/$browserName.xml
outputFile: 'karma_unit_test', // if included, results will be saved as $outputDir/$browserName/$outputFile
suite: '', // suite will become the package name attribute in xml testsuite element
useBrowserName: true, // add browser name to report and classes names
nameFormatter: undefined, // function (browser, result) to customize the name attribute in xml testcase element
classNameFormatter: undefined, // function (browser, result) to customize the classname attribute in xml testcase element
properties: {}, // key value pair of properties to add to the <properties> section of the report
xmlVersion: null // use '1' if reporting to be per SonarQube 6.2 XML format
},
angularCli: {
environment: 'dev',
codeCoverage: true
},
reporters: config.angularCli && config.angularCli.codeCoverage
? ['progress', 'coverage-istanbul']
: ['progress', 'kjhtml', 'sonarqubeUnit', 'junit'],
port: 9876,
colors: true,
logLevel: config.LOG_INFO,
autoWatch: false,
browsers: ['Firefox'],
singleRun: true,
restartOnFileChange: false,
captureTimeout: 210000,
browserDisconnectTolerance: 3,
browserDisconnectTimeout : 210000,
browserNoActivityTimeout : 210000
});
};
这是怎么回事?
将您的价值观更改为:-
自动手表:真,
单次运行:假,
可选更改,可能需要也可能不需要
restartOnFileChange: true
删除冒号前的space:-
浏览器断开连接超时:210000,
浏览器无活动超时:210000
在我的本地 angular(v10) 项目中 运行 ng 测试 之后,所有测试用例都成功执行并且浏览器也启动了我能够看到绿点,但在最后一刻浏览器被杀死,并在我的命令提示符中显示以下警告
karma.config.js
module.exports = function (config) {
config.set({
basePath: '',
frameworks: ['jasmine', '@angular-devkit/build-angular'],
plugins: [
'karma-jasmine',
'karma-firefox-launcher',
'karma-jasmine-html-reporter',
'karma-coverage-istanbul-reporter',
'@angular-devkit/build-angular/plugins/karma',
'karma-junit-reporter',
'karma-sonarqube-unit-reporter'
],
client: {
clearContext: false // leave Jasmine Spec Runner output visible in browser
},
coverageIstanbulReporter: {
dir: require('path').join(__dirname, './coverage'),
reports: [ 'html', 'lcovonly', 'text-summary' ],
fixWebpackSourcePaths: true
},
sonarQubeUnitReporter: {
sonarQubeVersion: 'LATEST',
outputFile: 'reports/ut_report.xml',
overrideTestDescription: true,
testPaths: ['./ng-app'],
testFilePattern: '.spec.ts',
useBrowserName: false
},
junitReporter: {
outputDir: 'angular_junit_reporter', // results will be saved as $outputDir/$browserName.xml
outputFile: 'karma_unit_test', // if included, results will be saved as $outputDir/$browserName/$outputFile
suite: '', // suite will become the package name attribute in xml testsuite element
useBrowserName: true, // add browser name to report and classes names
nameFormatter: undefined, // function (browser, result) to customize the name attribute in xml testcase element
classNameFormatter: undefined, // function (browser, result) to customize the classname attribute in xml testcase element
properties: {}, // key value pair of properties to add to the <properties> section of the report
xmlVersion: null // use '1' if reporting to be per SonarQube 6.2 XML format
},
angularCli: {
environment: 'dev',
codeCoverage: true
},
reporters: config.angularCli && config.angularCli.codeCoverage
? ['progress', 'coverage-istanbul']
: ['progress', 'kjhtml', 'sonarqubeUnit', 'junit'],
port: 9876,
colors: true,
logLevel: config.LOG_INFO,
autoWatch: false,
browsers: ['Firefox'],
singleRun: true,
restartOnFileChange: false,
captureTimeout: 210000,
browserDisconnectTolerance: 3,
browserDisconnectTimeout : 210000,
browserNoActivityTimeout : 210000
});
};
这是怎么回事?
将您的价值观更改为:- 自动手表:真, 单次运行:假,
可选更改,可能需要也可能不需要 restartOnFileChange: true
删除冒号前的space:- 浏览器断开连接超时:210000, 浏览器无活动超时:210000