13 lines
221 B
JavaScript
13 lines
221 B
JavaScript
var torque = require('../lib/torque/core');
|
|
|
|
QUnit.module('animator');
|
|
|
|
var animator = null;
|
|
|
|
QUnit.testStart(function() {
|
|
animator = new torque.Animator();
|
|
});
|
|
|
|
test('time moves', function() {
|
|
animator.start();
|
|
}); |