123456789101112131415161718192021222324 |
- /**
- * @author TristanVALCKE / https://github.com/Itee
- */
- /* global QUnit */
- import { VectorKeyframeTrack } from '../../../../../src/animation/tracks/VectorKeyframeTrack';
- export default QUnit.module( 'Animation', () => {
- QUnit.module( 'Tracks', () => {
- QUnit.module( 'VectorKeyframeTrack', () => {
- QUnit.todo( 'write me !', ( assert ) => {
- assert.ok( false, "everything's gonna be alright" );
- } );
- } );
- } );
- } );
|