在Angular项目中,我与Karma有一个空白页。 我只看到带有调试按钮的标头,但在主容器中什么也没有,它完全空白。 我应该指出我使用WSL
这是我的karma.conf.js
// Karma configuration file, see link for more information
// https://karma-runner.github.io/1.0/config/configuration-file.html
module.exports = function(config) {
config.set({
basePath: '',
frameworks: ['jasmine', '@angular-devkit/build-angular'],
plugins: [
require('karma-jasmine'),
require('karma-chrome-launcher'),
require('karma-jasmine-html-reporter'),
require('karma-coverage-istanbul-reporter'),
require('@angular-devkit/build-angular/plugins/karma')
],
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
},
reporters: ['progress', 'kjhtml'],
port: 9876,
colors: true,
logLevel: config.LOG_INFO,
autoWatch: true,
browsers: ['Chrome'],
singleRun: false,
restartOnFileChange: true
});
};
你有什么主意吗?
答案 0 :(得分:0)
这可能是由于某些损坏的单元测试导致其他单元测试无法运行。请按照以下步骤操作,并让我知道:
npm test
运行测试。gibash
的{{1}}或cmd
控制台。它不应出现任何控制台错误(在控制台上验证并修复。)