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.

translate.test.ts 611B

123456789101112131415161718192021222324252627282930313233343536
  1. import TestState from '../test-utils'
  2. describe('translate command', () => {
  3. const tt = new TestState()
  4. tt.resetDocumentState()
  5. it('translates a single selected shape', () => {
  6. // TODO
  7. null
  8. })
  9. it('translates multiple selected shape', () => {
  10. // TODO
  11. null
  12. })
  13. it('translates while axis-locked', () => {
  14. // TODO
  15. null
  16. })
  17. it('translates after leaving axis-locked state', () => {
  18. // TODO
  19. null
  20. })
  21. it('creates clones while translating', () => {
  22. // TODO
  23. null
  24. })
  25. it('removes clones after leaving cloning state', () => {
  26. // TODO
  27. null
  28. })
  29. })