editor.js/test/cypress/tests/collaborative-editing/undoRedo/Manager.spec.ts

13 lines
259 B
TypeScript
Raw Normal View History

describe('Undo Redo Manager', () => {
2022-12-07 21:56:41 +01:00
/**
* Need to draw work flow before describing tests
*/
it('should do \'UNDO\' operation', () => {
console.log('todo');
});
it('should do \'REDO\' operation', () => {
console.log('todo');
});
});