TextGeometry.tests.js 656 B

12345678910111213141516171819202122232425262728293031323334353637
  1. /**
  2. * @author TristanVALCKE / https://github.com/Itee
  3. */
  4. /* global QUnit */
  5. import {
  6. TextBufferGeometry
  7. } from '../../../../src/geometries/TextGeometry';
  8. export default QUnit.module( 'Geometries', () => {
  9. QUnit.module( 'TextBufferGeometry', () => {
  10. // INHERITANCE
  11. QUnit.todo( "Extending", ( assert ) => {
  12. assert.ok( false, "everything's gonna be alright" );
  13. } );
  14. // INSTANCING
  15. QUnit.todo( "Instancing", ( assert ) => {
  16. assert.ok( false, "everything's gonna be alright" );
  17. } );
  18. // OTHERS
  19. QUnit.todo( 'Standard geometry tests', ( assert ) => {
  20. assert.ok( false, "everything's gonna be alright" );
  21. } );
  22. } );
  23. } );