angular-motion
Version:
AngularMotion - Fancy CSS3 animations for AngularJS
20 lines (13 loc) • 385 B
JavaScript
;
describe('Animations', function() {
beforeEach(module('ngAnimate'));
var scope, $animate;
// Load ngAnimate and a mock scope
beforeEach(inject(function($rootScope, _$animate_) {
scope = $rootScope.$new();
$animate = _$animate_;
}));
it('the animate service should be properly defined', function() {
expect($animate).toBeDefined();
});
});