12345678910111213141516171819202122232425262728293031323334353637383940 |
- import TestState from '../test-utils'
-
- describe('align 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
- })
- })
- })
|