WireframeGeometry.tests.js 791 B

1234567891011121314151617181920212223242526272829303132333435363738394041424344
  1. /**
  2. * @author TristanVALCKE / https://github.com/Itee
  3. */
  4. /* global QUnit */
  5. import { WireframeGeometry } from '../../../../src/geometries/WireframeGeometry';
  6. export default QUnit.module( 'Geometries', () => {
  7. QUnit.module( 'WireframeGeometry', ( hooks ) => {
  8. var geometries = undefined;
  9. hooks.beforeEach( function () {
  10. geometries = [
  11. new WireframeGeometry()
  12. ];
  13. } );
  14. // INHERITANCE
  15. QUnit.todo( "Extending", ( assert ) => {
  16. assert.ok( false, "everything's gonna be alright" );
  17. } );
  18. // INSTANCING
  19. QUnit.todo( "Instancing", ( assert ) => {
  20. assert.ok( false, "everything's gonna be alright" );
  21. } );
  22. // OTHERS
  23. QUnit.todo( 'Standard geometry tests', ( assert ) => {
  24. assert.ok( false, "everything's gonna be alright" );
  25. } );
  26. } );
  27. } );
粤ICP备19079148号