Sidebar.Animation.tests.js 378 B

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