22 lines
304 B
TypeScript
22 lines
304 B
TypeScript
|
import TestState from '../test-utils'
|
||
|
|
||
|
describe('edit command', () => {
|
||
|
const tt = new TestState()
|
||
|
tt.resetDocumentState()
|
||
|
|
||
|
it('does command', () => {
|
||
|
// TODO
|
||
|
null
|
||
|
})
|
||
|
|
||
|
it('un-does command', () => {
|
||
|
// TODO
|
||
|
null
|
||
|
})
|
||
|
|
||
|
it('re-does command', () => {
|
||
|
// TODO
|
||
|
null
|
||
|
})
|
||
|
})
|