You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

distribute.test.ts 659B

12345678910111213141516171819202122232425262728293031323334353637
  1. import TestState from '../test-utils'
  2. describe('distribute command', () => {
  3. const tt = new TestState()
  4. tt.resetDocumentState()
  5. describe('when one item is selected', () => {
  6. it('does not change anything', () => {
  7. // TODO
  8. null
  9. })
  10. })
  11. describe('when two items are selected', () => {
  12. it('does not change anything', () => {
  13. // TODO
  14. null
  15. })
  16. })
  17. describe('when three or more items are selected', () => {
  18. it('does command', () => {
  19. // TODO
  20. null
  21. })
  22. it('un-does command', () => {
  23. // TODO
  24. null
  25. })
  26. it('re-does command', () => {
  27. // TODO
  28. null
  29. })
  30. })
  31. })