DataTextureLoader.tests.js 462 B

12345678910111213141516171819202122232425
  1. /* global QUnit */
  2. // import { DataTextureLoader } from '../../../../src/loaders/DataTextureLoader.js';
  3. export default QUnit.module( 'Loaders', () => {
  4. QUnit.module( 'DataTextureLoader', () => {
  5. // INSTANCING
  6. QUnit.todo( 'Instancing', ( assert ) => {
  7. assert.ok( false, 'everything\'s gonna be alright' );
  8. } );
  9. // PUBLIC STUFF
  10. QUnit.todo( 'load', ( assert ) => {
  11. assert.ok( false, 'everything\'s gonna be alright' );
  12. } );
  13. } );
  14. } );