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.

locked.test.ts 1.0KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061
  1. import TestState from './test-utils'
  2. describe('lock command', () => {
  3. const tt = new TestState()
  4. tt.resetDocumentState()
  5. it('toggles a locked shape', () => {
  6. // TODO
  7. null
  8. })
  9. it('selects a locked shape', () => {
  10. // TODO
  11. null
  12. })
  13. it('does not translate a locked shape', () => {
  14. // TODO
  15. null
  16. })
  17. it('does not translate a locked shape in a group', () => {
  18. // TODO
  19. null
  20. })
  21. it('does not rotate a locked shape', () => {
  22. // TODO
  23. null
  24. })
  25. it('does not rotate a locked shape in a group', () => {
  26. // TODO
  27. null
  28. })
  29. it('dpes not transform a locked single shape', () => {
  30. // TODO
  31. null
  32. })
  33. it('does not transform a locked shape in a multiple selection', () => {
  34. // TODO
  35. null
  36. })
  37. it('does not transform a locked shape in a group', () => {
  38. // TODO
  39. null
  40. })
  41. it('does not change the style of a locked shape', () => {
  42. // TODO
  43. null
  44. })
  45. it('does not change the handles of a locked shape', () => {
  46. // TODO
  47. null
  48. })
  49. })