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