12345678910111213141516171819202122232425262728293031323334353637 |
- /**
- * @author TristanVALCKE / https://github.com/Itee
- */
- /* global QUnit */
- import { CatmullRom, QuadraticBezier, CubicBezier } from '../../../../../src/extras/core/Interpolations';
- export default QUnit.module( 'Extras', () => {
- QUnit.module( 'Core', () => {
- QUnit.module( 'Interpolations', () => {
- // PUBLIC STUFF
- QUnit.todo( "CatmullRom", ( assert ) => {
- assert.ok( false, "everything's gonna be alright" );
- } );
- QUnit.todo( "QuadraticBezier", ( assert ) => {
- assert.ok( false, "everything's gonna be alright" );
- } );
- QUnit.todo( "CubicBezier", ( assert ) => {
- assert.ok( false, "everything's gonna be alright" );
- } );
- } );
- } );
- } );
|