40 lines
644 B
TypeScript
40 lines
644 B
TypeScript
import TestState from '../test-utils'
|
|
|
|
describe('duplicate command', () => {
|
|
const tt = new TestState()
|
|
tt.resetDocumentState()
|
|
|
|
describe('when one item is selected', () => {
|
|
it('does command', () => {
|
|
// TODO
|
|
null
|
|
})
|
|
|
|
it('un-does command', () => {
|
|
// TODO
|
|
null
|
|
})
|
|
|
|
it('re-does command', () => {
|
|
// TODO
|
|
null
|
|
})
|
|
})
|
|
|
|
describe('when multiple items are selected', () => {
|
|
it('does command', () => {
|
|
// TODO
|
|
null
|
|
})
|
|
|
|
it('un-does command', () => {
|
|
// TODO
|
|
null
|
|
})
|
|
|
|
it('re-does command', () => {
|
|
// TODO
|
|
null
|
|
})
|
|
})
|
|
})
|