VectorKeyframeTrack.tests.js 441 B

123456789101112131415161718192021222324
  1. /**
  2. * @author TristanVALCKE / https://github.com/Itee
  3. */
  4. /* global QUnit */
  5. import { VectorKeyframeTrack } from '../../../../../src/animation/tracks/VectorKeyframeTrack';
  6. export default QUnit.module( 'Animation', () => {
  7. QUnit.module( 'Tracks', () => {
  8. QUnit.module( 'VectorKeyframeTrack', () => {
  9. QUnit.todo( 'write me !', ( assert ) => {
  10. assert.ok( false, "everything's gonna be alright" );
  11. } );
  12. } );
  13. } );
  14. } );