mirror of
https://github.com/zhigang1992/angular.js.git
synced 2026-04-14 12:08:27 +08:00
24 lines
589 B
JavaScript
24 lines
589 B
JavaScript
'use strict';
|
|
|
|
var angularFiles = require('./angularFiles');
|
|
var sharedConfig = require('./karma-shared.conf');
|
|
|
|
module.exports = function(config) {
|
|
sharedConfig(config, {testName: 'AngularJS: jQuery', logFile: 'karma-jquery.log'});
|
|
|
|
config.set({
|
|
files: angularFiles.mergeFilesFor('karmaJquery').concat({
|
|
pattern: "test/fixtures/**/*.html",
|
|
served: true,
|
|
watched: true,
|
|
included: false
|
|
}),
|
|
exclude: angularFiles.mergeFilesFor('karmaJqueryExclude'),
|
|
|
|
junitReporter: {
|
|
outputFile: 'test_out/jquery.xml',
|
|
suite: 'jQuery'
|
|
}
|
|
});
|
|
};
|