SetScriptValueCommand.tests.js 365 B

123456789101112131415161718192021
  1. /* global QUnit */
  2. import { } from '../../../../editor/js/commands/SetScriptValueCommand';
  3. export default QUnit.module( 'Editor', () => {
  4. QUnit.module( 'Commands', () => {
  5. QUnit.module.todo( 'SetScriptValueCommand', () => {
  6. QUnit.test( 'write me !', ( assert ) => {
  7. assert.ok( false, "everything's gonna be alright" );
  8. } );
  9. } );
  10. } );
  11. } );