AnimationMixer.tests.js 1.4 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677
  1. /**
  2. * @author TristanVALCKE / https://github.com/Itee
  3. */
  4. /* global QUnit */
  5. import { AnimationMixer } from '../../../../src/animation/AnimationMixer';
  6. export default QUnit.module( 'Animation', () => {
  7. QUnit.module( 'AnimationMixer', () => {
  8. // INHERITANCE
  9. QUnit.todo( "Extending", ( assert ) => {
  10. assert.ok( false, "everything's gonna be alright" );
  11. } );
  12. // INSTANCING
  13. QUnit.todo( "Instancing", ( assert ) => {
  14. assert.ok( false, "everything's gonna be alright" );
  15. } );
  16. // PUBLIC STUFF
  17. QUnit.todo( "clipAction", ( assert ) => {
  18. assert.ok( false, "everything's gonna be alright" );
  19. } );
  20. QUnit.todo( "existingAction", ( assert ) => {
  21. assert.ok( false, "everything's gonna be alright" );
  22. } );
  23. QUnit.todo( "stopAllAction", ( assert ) => {
  24. assert.ok( false, "everything's gonna be alright" );
  25. } );
  26. QUnit.todo( "update", ( assert ) => {
  27. assert.ok( false, "everything's gonna be alright" );
  28. } );
  29. QUnit.todo( "getRoot", ( assert ) => {
  30. assert.ok( false, "everything's gonna be alright" );
  31. } );
  32. QUnit.todo( "uncacheClip", ( assert ) => {
  33. assert.ok( false, "everything's gonna be alright" );
  34. } );
  35. QUnit.todo( "uncacheRoot", ( assert ) => {
  36. assert.ok( false, "everything's gonna be alright" );
  37. } );
  38. QUnit.todo( "uncacheAction", ( assert ) => {
  39. assert.ok( false, "everything's gonna be alright" );
  40. } );
  41. } );
  42. } );
粤ICP备19079148号