diff options
Diffstat (limited to 'karma-jquery.conf.js')
| -rw-r--r-- | karma-jquery.conf.js | 14 | 
1 files changed, 14 insertions, 0 deletions
| diff --git a/karma-jquery.conf.js b/karma-jquery.conf.js new file mode 100644 index 00000000..7b527a15 --- /dev/null +++ b/karma-jquery.conf.js @@ -0,0 +1,14 @@ +var angularFiles = require(__dirname + '/angularFiles.js'); + +files = angularFiles.mergeFiles(JASMINE, JASMINE_ADAPTER, 'jstdJquery'); +exclude = ['**/*jasmine*/**', '**/*jstd*/**'].concat(angularFiles.files.jstdJqueryExclude); + +autoWatch = true; +logLevel = LOG_INFO; +logColors = true; +browsers = ['Chrome']; + +junitReporter = { +  outputFile: 'test_out/jquery.xml', +  suite: 'jQuery' +}; | 
