comments out test

This commit is contained in:
Francisco Dans 2015-08-04 12:36:48 +02:00
parent ee43ef5fa1
commit 5017213a3b

View File

@ -70,14 +70,14 @@ test("stop should call onStop", function(assert){
// animator.pause(); // animator.pause();
// }); // });
QUnit.test("tick should pause animation on end if loop is disabled", function(assert){ // QUnit.test("tick should pause animation on end if loop is disabled", function(assert){
animator.options.loop = false; // animator.options.loop = false;
assert.ok(!animator.running); // assert.ok(!animator.running);
animator.toggle(); // animator.toggle();
assert.ok(animator.running); // assert.ok(animator.running);
setTimeout(function(){ // setTimeout(function(){
assert.notEqual(animator._time, 0); // assert.notEqual(animator._time, 0);
QUnit.start(); // QUnit.start();
}, 100) // }, 100)
animator.pause(); // animator.pause();
}); // });