Вы не можете выбрать более 25 тем Темы должны начинаться с буквы или цифры, могут содержать дефисы(-) и должны содержать не более 35 символов.

move-to-page.test.ts 681B

12345678910111213141516171819202122232425262728293031323334353637383940
  1. import TestState from '../test-utils'
  2. describe('move-to-page 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 multiple items are selected', () => {
  12. it('does command', () => {
  13. // TODO
  14. null
  15. })
  16. it('un-does command', () => {
  17. // TODO
  18. null
  19. })
  20. it('re-does command', () => {
  21. // TODO
  22. null
  23. })
  24. })
  25. it('reparents children of groups to page', () => {
  26. // TODO
  27. null
  28. })
  29. it('correctly preserves moved groups', () => {
  30. // TODO
  31. null
  32. })
  33. })