| 1234567891011121314151617181920212223242526272829303132333435363738394041424344 |
- /**
- * @author TristanVALCKE / https://github.com/Itee
- */
- /* global QUnit */
- import { WireframeGeometry } from '../../../../src/geometries/WireframeGeometry';
- export default QUnit.module( 'Geometries', () => {
- QUnit.module( 'WireframeGeometry', ( hooks ) => {
- var geometries = undefined;
- hooks.beforeEach( function () {
- geometries = [
- new WireframeGeometry()
- ];
- } );
- // 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" );
- } );
- } );
- } );
|