Interpolations.tests.js 693 B

12345678910111213141516171819202122232425262728293031323334353637
  1. /**
  2. * @author TristanVALCKE / https://github.com/Itee
  3. */
  4. /* global QUnit */
  5. import { CatmullRom, QuadraticBezier, CubicBezier } from '../../../../../src/extras/core/Interpolations';
  6. export default QUnit.module( 'Extras', () => {
  7. QUnit.module( 'Core', () => {
  8. QUnit.module( 'Interpolations', () => {
  9. // PUBLIC STUFF
  10. QUnit.todo( "CatmullRom", ( assert ) => {
  11. assert.ok( false, "everything's gonna be alright" );
  12. } );
  13. QUnit.todo( "QuadraticBezier", ( assert ) => {
  14. assert.ok( false, "everything's gonna be alright" );
  15. } );
  16. QUnit.todo( "CubicBezier", ( assert ) => {
  17. assert.ok( false, "everything's gonna be alright" );
  18. } );
  19. } );
  20. } );
  21. } );