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 714B

1234567891011121314151617181920212223242526272829303132333435363738
  1. import state from 'state'
  2. import * as json from './__mocks__/document.json'
  3. state.reset()
  4. state.send('MOUNTED').send('LOADED_FROM_FILE', { json: JSON.stringify(json) })
  5. state.send('CLEARED_PAGE')
  6. describe('translates shapes', () => {
  7. it('translates a single selected shape', () => {
  8. // TODO
  9. null
  10. })
  11. it('translates multiple selected shape', () => {
  12. // TODO
  13. null
  14. })
  15. it('translates while axis-locked', () => {
  16. // TODO
  17. null
  18. })
  19. it('translates after leaving axis-locked state', () => {
  20. // TODO
  21. null
  22. })
  23. it('creates clones while translating', () => {
  24. // TODO
  25. null
  26. })
  27. it('removes clones after leaving cloning state', () => {
  28. // TODO
  29. null
  30. })
  31. })