/** * @author TristanVALCKE / https://github.com/Itee */ /* global QUnit */ import { DepthTexture } from '../../../../src/textures/DepthTexture'; export default QUnit.module( 'Textures', () => { QUnit.module( 'DepthTexture', () => { // 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" ); } ); // PUBLIC STUFF QUnit.todo( "isDepthTexture", ( assert ) => { assert.ok( false, "everything's gonna be alright" ); } ); } ); } );