CubeTexture.tests.js 695 B

123456789101112131415161718192021222324252627282930313233343536373839
  1. /* global QUnit */
  2. import { CubeTexture } from '../../../../src/textures/CubeTexture';
  3. export default QUnit.module( 'Textures', () => {
  4. QUnit.module( 'CubeTexture', () => {
  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. // PROPERTIES
  14. QUnit.todo( "images", ( assert ) => {
  15. assert.ok( false, "everything's gonna be alright" );
  16. } );
  17. // PUBLIC STUFF
  18. QUnit.todo( "isCubeTexture", ( assert ) => {
  19. assert.ok( false, "everything's gonna be alright" );
  20. } );
  21. } );
  22. } );
粤ICP备19079148号