Я не могу получить отчет html karma jasmine при запуске модульного тестирования в chrome.Chrome загружается с html компонента, но не показывает результаты теста.
Однако я получаю результаты теста в самом терминале.Я попытался добавить ниже в karma.config.js, но получаю ошибки.
В Pulgins -> require ('karma-jasmine-html-reporter') В репортерах -> kjhtml
{
"message": "Uncaught TypeError: env.stopOnSpecFailure is not a function\nat node_modules/karma-jasmine-html-reporter/src/lib/adapter.js:26:7\n\nTypeError: env.stopOnSpecFailure is not a function\n at node_modules/karma-jasmine-html-reporter/src/lib/adapter.js:26:7\n at node_modules/karma-jasmine-html-reporter/src/lib/adapter.js:76:3",
"str": "Uncaught TypeError: env.stopOnSpecFailure is not a function\nat node_modules/karma-jasmine-html-reporter/src/lib/adapter.js:26:7\n\nTypeError: env.stopOnSpecFailure is not a function\n at node_modules/karma-jasmine-html-reporter/src/lib/adapter.js:26:7\n at node_modules/karma-jasmine-html-reporter/src/lib/adapter.js:76:3"
}
Ниже приведены версии в package.json
"jasmine-core": "~2.99.1",
"jasmine-spec-reporter": "^4.1.0",
"karma": "~2.0.0",
"karma-chrome-launcher": "^2.2.0",
"karma-cli": "~1.0.1",
"karma-coverage-istanbul-reporter": "^1.2.1",
"karma-jasmine": "^1.1.0",
"karma-jasmine-html-reporter": "^1.1.0",
Ниже приведен файл Karma.config.js
// Файл конфигурации Karma, см. Ссылку для получения дополнительной информации // https://karma -runner.github.io / 1.0 / config / configuration-file.html
process.env.CHROME_BIN = require('puppeteer').executablePath();
module.exports = function(config) {
config.set({
basePath: '',
frameworks: ['jasmine', '@angular/cli'],
plugins: [
require('karma-jasmine'),
require('karma-chrome-launcher'),
require('karma-junit-reporter'),
require('karma-coverage-istanbul-reporter'),
require('@angular/cli/plugins/karma'),
require('karma-jasmine-html-reporter')
],
client: {
clearContext: false, // leave Jasmine Spec Runner output visible in browser
captureConsole: false
},
junitReporter: {
outputDir: 'reports/junit/',
outputFile: 'TESTS-xunit.xml',
useBrowserName: false,
suite: '' // Will become the package name attribute in xml testsuite element
},
coverageIstanbulReporter: {
reports: ['html', 'lcovonly', 'text-summary'],
dir: './reports/coverage',
fixWebpackSourcePaths: true
},
angularCli: {
environment: 'dev'
},
reporters: ['progress', 'junit', 'kjhtml'],
port: 9876,
colors: true,
// Level of logging, can be: LOG_DISABLE || LOG_ERROR || LOG_WARN || LOG_INFO || LOG_DEBUG
logLevel: config.LOG_INFO,
autoWatch: true,
browsers: ['Chrome'],
singleRun: false
});
};