123456789101112131415161718192021222324 |
- /**
- * @author TristanVALCKE / https://github.com/Itee
- */
- /* global QUnit */
- import { NothingsIsExportedYet } from '../../../../editor/js/commands/SetMaterialMapCommand';
- export default QUnit.module( 'Editor', () => {
- QUnit.module( 'Commands', () => {
- QUnit.module.todo( 'SetMaterialMapCommand', () => {
- QUnit.test( 'write me !', ( assert ) => {
- assert.ok( false, "everything's gonna be alright" );
- } );
- } );
- } );
- } );
|