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.

align.test.ts 640B

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