37 lines
659 B
TypeScript
37 lines
659 B
TypeScript
import TestState from '../test-utils'
|
|
|
|
describe('distribute command', () => {
|
|
const tt = new TestState()
|
|
tt.resetDocumentState()
|
|
|
|
describe('when one item is selected', () => {
|
|
it('does not change anything', () => {
|
|
// TODO
|
|
null
|
|
})
|
|
})
|
|
|
|
describe('when two items are selected', () => {
|
|
it('does not change anything', () => {
|
|
// TODO
|
|
null
|
|
})
|
|
})
|
|
|
|
describe('when three or more items are selected', () => {
|
|
it('does command', () => {
|
|
// TODO
|
|
null
|
|
})
|
|
|
|
it('un-does command', () => {
|
|
// TODO
|
|
null
|
|
})
|
|
|
|
it('re-does command', () => {
|
|
// TODO
|
|
null
|
|
})
|
|
})
|
|
})
|