12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061 |
- import TestState from './test-utils'
-
- describe('lock command', () => {
- const tt = new TestState()
- tt.resetDocumentState()
-
- it('toggles a locked shape', () => {
- // TODO
- null
- })
-
- it('selects a locked shape', () => {
- // TODO
- null
- })
-
- it('does not translate a locked shape', () => {
- // TODO
- null
- })
-
- it('does not translate a locked shape in a group', () => {
- // TODO
- null
- })
-
- it('does not rotate a locked shape', () => {
- // TODO
- null
- })
-
- it('does not rotate a locked shape in a group', () => {
- // TODO
- null
- })
-
- it('dpes not transform a locked single shape', () => {
- // TODO
- null
- })
-
- it('does not transform a locked shape in a multiple selection', () => {
- // TODO
- null
- })
-
- it('does not transform a locked shape in a group', () => {
- // TODO
- null
- })
-
- it('does not change the style of a locked shape', () => {
- // TODO
- null
- })
-
- it('does not change the handles of a locked shape', () => {
- // TODO
- null
- })
- })
|