diff options
| author | Vojta Jina | 2013-03-20 18:57:13 -0700 | 
|---|---|---|
| committer | Igor Minar | 2013-04-03 18:22:03 -0700 | 
| commit | 91fa865bf22afdf4b25a20acce7a8c7f7d331323 (patch) | |
| tree | b450929dfc4cba0b80deec58927a779939dfbdfb /karma-jquery.conf.js | |
| parent | 10ae76673c200511f5da5aa1d5bea200b7be0fda (diff) | |
| download | angular.js-91fa865bf22afdf4b25a20acce7a8c7f7d331323.tar.bz2 | |
chore: use Karma
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' +}; | 
