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

30 lines
837 B
TypeScript

describe('Operation Manager', () => {
describe('Local changes', () => {
it('should put new operation to the Pending OPs until sending to the server', () => {
console.log('todo');
});
it('should remove operation from the Pending OPs after sending to the server', () => {
console.log('todo');
});
it('should put received operation with acknowledgement to the Resolved OPs', () => {
console.log('todo');
});
});
describe('Received changes', () => {
it('should transform Pending OPs relative to the received operation', () => {
console.log('todo');
});
it('should put received operation to the private Event Bus', () => {
console.log('todo');
});
it('should put received operation to the Resolved OPs', () => {
console.log('todo');
});
});
});