ponk
Version:
The development package for central platform of PO team.
104 lines (72 loc) • 3.41 kB
JavaScript
// Karma configuration
// Generated on Thu Sep 21 2017 16:54:51 GMT+0800 (China Standard Time)
const karmaWebpack = require('karma-webpack');
const path = require('path');
const karmaCoverageIstanbulReporter = require('karma-coverage-istanbul-reporter');
const webpackConfig = require('./webpack.test.js');
module.exports = (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.bundle.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.bundle.js': ['webpack']
},
webpack: webpackConfig,
// test results reporter to use
// possible values: 'dots', 'progress'
// available reporters: https://npmjs.org/browse/keyword/karma-reporter
reporters: ['progress', 'coverage-istanbul', 'html'],
coverageIstanbulReporter: {
reports: ['html', 'lcovonly', 'text-summary', 'cobertura'],
dir: path.join(__dirname, 'unitTest', 'coverage'),
fixWebpackSourcePaths: true
},
htmlReporter: {
outputDir: path.join(__dirname, 'unitTest'), // where to put the reports
templatePath: null, // set if you moved jasmine_template.html
focusOnFailures: true, // reports show failures on start
namedFiles: false, // name files instead of creating sub-directories
pageTitle: null, // page title for reports; browser info by default
urlFriendlyName: false, // simply replaces spaces with _ for files/dirs
reportName: 'result', // report summary filename; browser info by default
// experimental
preserveDescribeNesting: false, // folded suites stay folded
foldAll: false, // reports start folded (only with preserveDescribeNesting)
},
// 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: false,
// start these browsers
// available browser launchers: https://npmjs.org/browse/keyword/karma-launcher
browsers: ['PhantomJS'],
// Continuous Integration mode
// if true, Karma captures browsers, runs the tests and exits
singleRun: true,
// Concurrency level
// how many browser should be started simultaneous
concurrency: Infinity,
plugins: [
'karma-*',
karmaWebpack,
karmaCoverageIstanbulReporter
]
})
}