Reputation: 327
I am using karma
angular-cli
to run testcase using jasmine
and javascript
.
In my karma.config
file I added these lines.
reporters: ['progress','html'],
htmlReporter: {
outputFile: 'test/units.html'
},
And I am running this command in command prompt
karma start --reporters html
But instead of getting testcase result I am getting only these.
Edited: Added 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
})
}
Added 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"
}
And I got the result as Can anyone help how to produce the testcase Results in html?
Upvotes: 1
Views: 3440
Reputation: 479
Use karma-jasmine-html-reporter, to print the jasmine format reports below the karma banner.
karma-jasmine-html-reporter: https://github.com/taras42/karma-jasmine-html-reporter
Add the following in your karma.conf.js file
module.exports = function(config) {
config.set({
client: {
clearContext: false
},
reporters: ['kjhtml'],
plugins: ['karma-jasmine-html-reporter']
});
};
Configuring karma in the above way will produce the following result:
Upvotes: 2