editor.js/test/cypress/tests/collaborative-editing/undoRedo/Manager.spec.ts
2022-12-07 20:56:41 +00:00

13 lines
259 B
TypeScript

describe('Undo Redo Manager', () => {
/**
* Need to draw work flow before describing tests
*/
it('should do \'UNDO\' operation', () => {
console.log('todo');
});
it('should do \'REDO\' operation', () => {
console.log('todo');
});
});