aboutsummaryrefslogtreecommitdiffstats
path: root/test/ng/animationSpec.js
diff options
context:
space:
mode:
Diffstat (limited to 'test/ng/animationSpec.js')
-rw-r--r--test/ng/animationSpec.js15
1 files changed, 0 insertions, 15 deletions
diff --git a/test/ng/animationSpec.js b/test/ng/animationSpec.js
deleted file mode 100644
index 86592643..00000000
--- a/test/ng/animationSpec.js
+++ /dev/null
@@ -1,15 +0,0 @@
-'use strict';
-
-describe('$animation', function() {
-
- it('should allow animation registration', function() {
- var noopCustom = function(){};
- module(function($animationProvider) {
- $animationProvider.register('noop-custom', valueFn(noopCustom));
- });
- inject(function($animation) {
- expect($animation('noop-custom')).toBe(noopCustom);
- });
- });
-
-});