DepthTexture.tests.js 577 B

1234567891011121314151617181920212223242526272829303132
  1. /* global QUnit */
  2. import { DepthTexture } from '../../../../src/textures/DepthTexture';
  3. export default QUnit.module( 'Textures', () => {
  4. QUnit.module( 'DepthTexture', () => {
  5. // INHERITANCE
  6. QUnit.todo( "Extending", ( assert ) => {
  7. assert.ok( false, "everything's gonna be alright" );
  8. } );
  9. // INSTANCING
  10. QUnit.todo( "Instancing", ( assert ) => {
  11. assert.ok( false, "everything's gonna be alright" );
  12. } );
  13. // PUBLIC STUFF
  14. QUnit.todo( "isDepthTexture", ( assert ) => {
  15. assert.ok( false, "everything's gonna be alright" );
  16. } );
  17. } );
  18. } );