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