mirror of
https://github.com/Hopiu/angular.js.git
synced 2026-03-17 15:40:22 +00:00
BREAKING CHANGE: since all the code in the ngMobile module is touch related, we are renaming the module to ngTouch. To migrate, please replace all references to "ngMobile" with "ngTouch" and "angular-mobile.js" to "angular-touch.js". Closes #3526
39 lines
975 B
JavaScript
39 lines
975 B
JavaScript
var sharedConfig = require('./karma-shared.conf');
|
|
|
|
module.exports = function(config) {
|
|
sharedConfig(config);
|
|
|
|
config.set({
|
|
files: [
|
|
'build/docs/components/jquery.js',
|
|
'test/jquery_remove.js',
|
|
|
|
'build/angular.js',
|
|
'build/angular-cookies.js',
|
|
'build/angular-mocks.js',
|
|
'build/angular-resource.js',
|
|
'build/angular-touch.js',
|
|
'build/angular-sanitize.js',
|
|
'build/angular-route.js',
|
|
'build/angular-animate.js',
|
|
|
|
'build/docs/components/lunr.js',
|
|
'build/docs/components/google-code-prettify.js',
|
|
'build/docs/components/marked.js',
|
|
|
|
'build/docs/components/angular-bootstrap.js',
|
|
'build/docs/components/angular-bootstrap-prettify.js',
|
|
'build/docs/js/docs.js',
|
|
'build/docs/docs-data.js',
|
|
|
|
'docs/component-spec/*.js'
|
|
],
|
|
|
|
junitReporter: {
|
|
outputFile: 'test_out/docs.xml',
|
|
suite: 'Docs'
|
|
}
|
|
});
|
|
|
|
config.sauceLabs.testName = 'AngularJS: docs';
|
|
};
|