NumberKeyframeTrack.tests.js 446 B

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