BooleanKeyframeTrack.tests.js 392 B

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