/** * @author TristanVALCKE / https://github.com/Itee */ /* global QUnit */ import { TextBufferGeometry } from '../../../../src/geometries/TextGeometry'; export default QUnit.module( 'Geometries', () => { QUnit.module( 'TextBufferGeometry', () => { // INHERITANCE QUnit.todo( "Extending", ( assert ) => { assert.ok( false, "everything's gonna be alright" ); } ); // INSTANCING QUnit.todo( "Instancing", ( assert ) => { assert.ok( false, "everything's gonna be alright" ); } ); // OTHERS QUnit.todo( 'Standard geometry tests', ( assert ) => { assert.ok( false, "everything's gonna be alright" ); } ); } ); } );