2013-06-25 18:48:10 +00:00
|
|
|
var sharedConfig = require('./karma-shared.conf');
|
2013-06-05 18:31:32 +00:00
|
|
|
|
2013-06-25 18:48:10 +00:00
|
|
|
module.exports = function(config) {
|
|
|
|
|
sharedConfig(config);
|
2013-06-05 18:31:32 +00:00
|
|
|
|
2013-06-25 18:48:10 +00:00
|
|
|
config.set({
|
|
|
|
|
files: [
|
|
|
|
|
'build/docs/components/jquery.js',
|
|
|
|
|
'test/jquery_remove.js',
|
2013-06-05 18:31:32 +00:00
|
|
|
|
2013-06-25 18:48:10 +00:00
|
|
|
'build/angular.js',
|
|
|
|
|
'build/angular-cookies.js',
|
|
|
|
|
'build/angular-mocks.js',
|
|
|
|
|
'build/angular-resource.js',
|
|
|
|
|
'build/angular-mobile.js',
|
|
|
|
|
'build/angular-sanitize.js',
|
|
|
|
|
'build/angular-route.js',
|
feat(ngAnimate): complete rewrite of animations
- ngAnimate directive is gone and was replaced with class based animations/transitions
- support for triggering animations on css class additions and removals
- done callback was added to all animation apis
- $animation and $animator where merged into a single $animate service with api:
- $animate.enter(element, parent, after, done);
- $animate.leave(element, done);
- $animate.move(element, parent, after, done);
- $animate.addClass(element, className, done);
- $animate.removeClass(element, className, done);
BREAKING CHANGE: too many things changed, we'll write up a separate doc with migration instructions
2013-06-18 17:59:57 +00:00
|
|
|
'build/angular-animate.js',
|
2013-06-05 18:31:32 +00:00
|
|
|
|
2013-06-28 18:26:45 +00:00
|
|
|
'build/docs/components/lunr.js',
|
|
|
|
|
'build/docs/components/google-code-prettify.js',
|
2013-07-09 01:58:14 +00:00
|
|
|
'build/docs/components/marked.js',
|
2013-06-05 18:31:32 +00:00
|
|
|
|
2013-06-25 18:48:10 +00:00
|
|
|
'build/docs/components/angular-bootstrap.js',
|
|
|
|
|
'build/docs/components/angular-bootstrap-prettify.js',
|
|
|
|
|
'build/docs/js/docs.js',
|
|
|
|
|
'build/docs/docs-data.js',
|
2013-06-05 18:31:32 +00:00
|
|
|
|
2013-06-25 18:48:10 +00:00
|
|
|
'docs/component-spec/*.js'
|
|
|
|
|
],
|
2013-06-05 18:31:32 +00:00
|
|
|
|
2013-06-25 18:48:10 +00:00
|
|
|
junitReporter: {
|
|
|
|
|
outputFile: 'test_out/docs.xml',
|
|
|
|
|
suite: 'Docs'
|
|
|
|
|
}
|
|
|
|
|
});
|
2013-06-25 20:50:45 +00:00
|
|
|
|
|
|
|
|
config.sauceLabs.testName = 'AngularJS: docs';
|
2013-06-05 18:31:32 +00:00
|
|
|
};
|