我使用karma
angular-cli
使用jasmine
和javascript
来运行测试用例。
在我的karma.config
文件中,我添加了这些行。
reporters: ['progress','html'],
htmlReporter: {
outputFile: 'test/units.html'
},
我在命令提示符下运行此命令
karma start --reporters html
但是我没有得到测试结果,而是只得到了这些。
编辑: 添加了karma.conf.js
// Karma configuration
// Generated on Tue Sep 26 2017 18:46:51 GMT+0530 (India Standard Time)
module.exports = function(config) {
config.set({
// base path that will be used to resolve all patterns (eg. files, exclude)
basePath: '',
// frameworks to use
// available frameworks: https://npmjs.org/browse/keyword/karma-adapter
frameworks: ['jasmine'],
// list of files / patterns to load in the browser
files: [
'test-main.js',
'js/*.js',
'test/*.js'
],
// list of files to exclude
exclude: [
],
// preprocess matching files before serving them to the browser
// available preprocessors: https://npmjs.org/browse/keyword/karma-preprocessor
preprocessors: {
},
// test results reporter to use
// possible values: 'dots', 'progress'
// available reporters: https://npmjs.org/browse/keyword/karma-reporter
client: {
clearContext: false
},
reporters: ['kjhtml','html'],
plugins: ['karma-chrome-launcher',
'karma-firefox-launcher',
'karma-jasmine',
'karma-jasmine-html-reporter'],
// web server port
port: 9876,
// enable / disable colors in the output (reporters and logs)
colors: true,
// level of logging
// possible values: config.LOG_DISABLE || config.LOG_ERROR || config.LOG_WARN || config.LOG_INFO || config.LOG_DEBUG
logLevel: config.LOG_INFO,
// enable / disable watching file and executing tests whenever any file changes
autoWatch: true,
// start these browsers
// available browser launchers: https://npmjs.org/browse/keyword/karma-launcher
browsers: ['Chrome'],
// Continuous Integration mode
// if true, Karma captures browsers, runs the tests and exits
singleRun: false,
// Concurrency level
// how many browser should be started simultaneous
concurrency: Infinity
})
}
添加了package.json
{
"name": "test",
"version": "1.0.0",
"description": "",
"main": "karma.conf.js",
"directories": {
"test": "test"
},
"dependencies": {
"jasmine": "^2.7.0",
"karma": "^1.7.0",
"karma-chrome-launcher": "^2.2.0",
"karma-firefox-launcher": "^1.0.1",
"karma-ie-launcher": "^1.0.0",
"karma-jasmine": "^1.1.0",
"karma-requirejs": "^1.1.0"
},
"devDependencies": {
"jasmine": "^2.8.0",
"jasmine-core": "^2.8.0",
"karma": "^1.7.1",
"karma-chrome-launcher": "^2.2.0",
"karma-htmlfile-reporter": "~0.3",
"karma-jasmine": "^1.1.0",
"karma-jasmine-html-reporter": "^0.1.8",
"karma-requirejs": "^1.1.0",
"karma-spec-reporter": "0.0.31"
},
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1"
},
"author": "",
"license": "ISC"
}
答案 0 :(得分:2)
使用karma-jasmine-html-reporter,在业力横幅下面打印茉莉花格式报告。
果报茉莉-HTML的记者: https://github.com/taras42/karma-jasmine-html-reporter
在karma.conf.js文件中添加以下内容
module.exports = function(config) {
config.set({
client: {
clearContext: false
},
reporters: ['kjhtml'],
plugins: ['karma-jasmine-html-reporter']
});
};