Files
2015-06-10 15:31:16 -05:00

17 lines
598 B
JavaScript
Executable File

suite('tick-tests', function() {
setup(function() { webAnimations1.timeline._animations = []; });
test('animations are in effect but ticking stops once forward fill is reached', function() {
tick(90);
var animation = document.body.animate([], {duration: 1000, fill: 'forwards'});
tick(100);
tick(600);
assert.equal(webAnimations1.timeline._animations.length, 1);
assert.equal(isTicking(), true);
tick(1100);
assert.equal(animation.finished, true);
assert.equal(webAnimations1.timeline._animations.length, 1);
assert.equal(isTicking(), false);
});
});