VectorKeyframeTrack.tests.js 388 B

123456789101112131415161718192021
  1. /* global QUnit */
  2. //import { VectorKeyframeTrack } from '../../../../../src/animation/tracks/VectorKeyframeTrack.js';
  3. export default QUnit.module( 'Animation', () => {
  4. QUnit.module( 'Tracks', () => {
  5. QUnit.module( 'VectorKeyframeTrack', () => {
  6. QUnit.todo( 'write me !', ( assert ) => {
  7. assert.ok( false, 'everything\'s gonna be alright' );
  8. } );
  9. } );
  10. } );
  11. } );