SetMaterialMapCommand.tests.js 446 B

123456789101112131415161718192021222324
  1. /**
  2. * @author TristanVALCKE / https://github.com/Itee
  3. */
  4. /* global QUnit */
  5. import { NothingsIsExportedYet } from '../../../../editor/js/commands/SetMaterialMapCommand';
  6. export default QUnit.module( 'Editor', () => {
  7. QUnit.module( 'Commands', () => {
  8. QUnit.module.todo( 'SetMaterialMapCommand', () => {
  9. QUnit.test( 'write me !', ( assert ) => {
  10. assert.ok( false, "everything's gonna be alright" );
  11. } );
  12. } );
  13. } );
  14. } );