|
29f96c8
vojtajina authored
|
||
| 1 | var angularFiles = require('./angularFiles'); | |
| 2 | var sharedConfig = require('./karma-shared.conf'); | |
|
9d168f0
IgorMinar authored
|
||
| 3 | ||
|
29f96c8
vojtajina authored
|
||
| 4 | module.exports = function(config) { | |
|
80d0f98
vojtajina authored
|
||
| 5 | sharedConfig(config, {testName: 'AngularJS: jqLite', logFile: 'karma-jqlite.log'}); | |
|
9d168f0
IgorMinar authored
|
||
| 6 | ||
|
29f96c8
vojtajina authored
|
||
| 7 | config.set({ | |
|
05fbed5
caitp authored
|
||
| 8 | files: angularFiles.mergeFilesFor('karma').concat({ | |
| 9 | pattern: "test/fixtures/**/*.html", | |
| 10 | served: true, | |
| 11 | watched: true, | |
| 12 | included: false | |
| 13 | }), | |
|
976edc1
vojtajina authored
|
||
| 14 | exclude: angularFiles.mergeFilesFor('karmaExclude'), | |
|
a5d434d
vojtajina authored
|
||
| 15 | ||
|
29f96c8
vojtajina authored
|
||
| 16 | junitReporter: { | |
| 17 | outputFile: 'test_out/jqlite.xml', | |
| 18 | suite: 'jqLite' | |
| 19 | } | |
| 20 | }); | |
|
a5d434d
vojtajina authored
|
||
| 21 | }; |