We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent cb92fbb commit 3db0a5dCopy full SHA for 3db0a5d
test/animate/css_animate_spec.dart
@@ -92,19 +92,17 @@ _run({bool animationsAllowed}) {
92
it('should prevent child animations', async(() {
93
_.compile('<div></div>');
94
animate.addClass(_.rootElement, 'test');
95
- runner.start();
96
if (animationsAllowed) {
97
expect(_.rootElement).toHaveClass('test-add');
98
}
99
var spans = es('<span>A</span><span>B</span>');
100
animate.insert(spans, _.rootElement);
101
102
expect(spans.first).not.toHaveClass('ng-add');
103
}));
104
});
105
106
107
-class MockAnimationLoop extends Mock implements AnimationLoop {
+class MockAnimationLoop implements AnimationLoop {
108
bool animationsAllowed;
109
num time = 0.0;
110
0 commit comments