angular.js/karma-docs.conf.js
Matias Niemelä 81923f1e41 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-07-26 23:49:54 -07:00

39 lines
976 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-mobile.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';
};