DirectionalLightHelper.tests.js 768 B

1234567891011121314151617181920212223242526272829303132333435363738394041
  1. /**
  2. * @author TristanVALCKE / https://github.com/Itee
  3. */
  4. /* global QUnit */
  5. import { DirectionalLightHelper } from '../../../../src/helpers/DirectionalLightHelper';
  6. export default QUnit.module( 'Helpers', () => {
  7. QUnit.module.todo( 'DirectionalLightHelper', () => {
  8. // INHERITANCE
  9. QUnit.todo( "Extending", ( assert ) => {
  10. assert.ok( false, "everything's gonna be alright" );
  11. } );
  12. // INSTANCING
  13. QUnit.todo( "Instancing", ( assert ) => {
  14. assert.ok( false, "everything's gonna be alright" );
  15. } );
  16. // PUBLIC STUFF
  17. QUnit.todo( "dispose", ( assert ) => {
  18. assert.ok( false, "everything's gonna be alright" );
  19. } );
  20. QUnit.todo( "update", ( assert ) => {
  21. assert.ok( false, "everything's gonna be alright" );
  22. } );
  23. } );
  24. } );