AnimationUtils.tests.js 951 B

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152
  1. /**
  2. * @author TristanVALCKE / https://github.com/Itee
  3. */
  4. /* global QUnit */
  5. import { AnimationUtils } from '../../../../src/animation/AnimationUtils';
  6. export default QUnit.module( 'Animation', () => {
  7. QUnit.module( 'AnimationUtils', () => {
  8. // PUBLIC STUFF
  9. QUnit.todo( "arraySlice", ( assert ) => {
  10. assert.ok( false, "everything's gonna be alright" );
  11. } );
  12. QUnit.todo( "convertArray", ( assert ) => {
  13. assert.ok( false, "everything's gonna be alright" );
  14. } );
  15. QUnit.todo( "isTypedArray", ( assert ) => {
  16. assert.ok( false, "everything's gonna be alright" );
  17. } );
  18. QUnit.todo( "getKeyframeOrder", ( assert ) => {
  19. assert.ok( false, "everything's gonna be alright" );
  20. } );
  21. QUnit.todo( "sortedArray", ( assert ) => {
  22. assert.ok( false, "everything's gonna be alright" );
  23. } );
  24. QUnit.todo( "flattenJSON", ( assert ) => {
  25. assert.ok( false, "everything's gonna be alright" );
  26. } );
  27. } );
  28. } );
粤ICP备19079148号