mirror of
https://github.com/Hopiu/angular.js.git
synced 2026-03-16 23:30:23 +00:00
- 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
39 lines
976 B
JavaScript
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';
|
|
};
|