12345678910111213141516171819202122232425262728293031323334353637 |
- 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
- })
- })
- })
|