SetSceneCommand.tests.js 412 字节
Newer Older
1 2 3 4 5
/**
 * @author TristanVALCKE / https://github.com/Itee
 */
/* global QUnit */

6
import { } from '../../../../editor/js/commands/SetSceneCommand';
7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24

export default QUnit.module( 'Editor', () => {

	QUnit.module( 'Commands', () => {

		QUnit.module.todo( 'SetSceneCommand', () => {

			QUnit.test( 'write me !', ( assert ) => {

				assert.ok( false, "everything's gonna be alright" );

			} );

		} );

	} );

} );