|
4fbd4bb
vojtajina authored
|
||
| 1 | var angularFiles = require('./angularFiles'); | |
| 2 | var sharedConfig = require('./karma-shared.conf'); | |
|
06eceeb
IgorMinar authored
|
||
| 3 | ||
|
4fbd4bb
vojtajina authored
|
||
| 4 | module.exports = function(config) { | |
| 5 | sharedConfig(config); | |
|
06eceeb
IgorMinar authored
|
||
| 6 | ||
|
4fbd4bb
vojtajina authored
|
||
| 7 | config.set({ | |
|
8efcec6
vojtajina authored
|
||
| 8 | files: angularFiles.mergeFilesFor('karmaJquery'), | |
| 9 | exclude: angularFiles.mergeFilesFor('karmaJqueryExclude'), | |
|
b6620c7
vojtajina authored
|
||
| 10 | ||
|
4fbd4bb
vojtajina authored
|
||
| 11 | junitReporter: { | |
| 12 | outputFile: 'test_out/jquery.xml', | |
| 13 | suite: 'jQuery' | |
| 14 | } | |
| 15 | }); | |
|
9a77d03
vojtajina authored
|
||
| 16 | ||
| 17 | config.sauceLabs.testName = 'AngularJS: jQuery'; | |
|
b6620c7
vojtajina authored
|
||
| 18 | }; |