diff options
author | 2018-05-21 20:19:48 +0000 | |
---|---|---|
committer | 2018-05-21 20:19:48 +0000 | |
commit | 05b37297177e8a342668c15e5d6f738b51f7aedd (patch) | |
tree | e236c96df52a13f935292db8aa73e84d0c41ad8a /karma.conf.js | |
parent | 884dfb789593d2a3cc319047ab1f0215778aec9f (diff) | |
parent | 1994c98063c27a41797dec01f2ca9fcbe33ceab0 (diff) |
Merge "init commit onap ui"2.0.0-ONAPbeijing2.0.0-ONAP
Diffstat (limited to 'karma.conf.js')
-rw-r--r-- | karma.conf.js | 87 |
1 files changed, 87 insertions, 0 deletions
diff --git a/karma.conf.js b/karma.conf.js new file mode 100644 index 0000000..bc35fb7 --- /dev/null +++ b/karma.conf.js @@ -0,0 +1,87 @@ +/**************************************************************************************** + * Karma configuration file + ***************************************************************************************/ + +module.exports = function (config) { + config.set({ + basePath:'', + files:[ + 'karma.entry.js', + ], + + /** + * Enable / disable watching file and executing tests whenever any file changes + */ + autoWatch: true, + + /** + * Here, we tell Karma we'll be using Jasmine + */ + frameworks:['jasmine'], + + /** + * Level of logging + * possible values: config.LOG_DISABLE || config.LOG_ERROR || config.LOG_WARN || config.LOG_INFO || config.LOG_DEBUG + */ + logLevel: config.LOG_INFO, + + /** + * Currently we have the following launchers: Firefox, Chrome, PhantomJS + * Available browser launchers: https://npmjs.org/browse/keyword/karma-launcher + */ + browsers: ['Firefox', 'PhantomJS'], + + /** + * Tells PhantomJS to shut down if Karma throws a ResourceError, If we didn't, PhantomJS might not shut down, + * and this would eat away at our system resources. + */ + phantomJsLauncher: { + exitOnResourceError: true + }, + + /** + * We tell Karma to run a list of preprocessors on our karma.entry.js file + */ + preprocessors: { + 'karma.entry.js': ['webpack', 'sourcemap'] + }, + + + /** + * dots: Tells karma to use dots reporter, which outputs a single dot for each test instead of descriptive message. + * kjhtml - Karma Jasmine HTML Reporter. Reporter that dynamically shows tests results at debug.html page. + */ + reporters: ['dots', 'kjhtml'], + + /** + * leave Jasmine Spec Runner output visible in browser + */ + client: { + clearContext: false + }, + + /** + * Keeps karma running after it completed it's tests for later rerun. + */ + singleRun: false, + + failOnEmptyTestSuite:false, + + /** + * Load webpack test configuration file + */ + webpack: require('./webpack/webpack.test.js'), + + webpackMiddleware: { + noInfo: true + }, + + /** + * Hide webpack bundle information messages + */ + webpackServer: { + noInfo: true + } + }) +}; + |