($animate)
| 6 | const module = angular.mock.module; |
| 7 | |
| 8 | function animateFlush($animate) { |
| 9 | if ($animate && $animate.flush) { |
| 10 | $animate.flush(); // 1.4 |
| 11 | } else if ($animate && $animate.triggerCallbacks) { |
| 12 | $animate.triggerCallbacks(); // 1.2-1.3 |
| 13 | } |
| 14 | } |
| 15 | |
| 16 | describe('uiView', function () { |
| 17 | 'use strict'; |