Du kan inte välja fler än 25 ämnen Ämnen måste starta med en bokstav eller siffra, kan innehålla bindestreck ('-') och vara max 35 tecken långa.

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