62 lines
1 KiB
TypeScript
62 lines
1 KiB
TypeScript
|
import TestState from './test-utils'
|
||
|
|
||
|
describe('locked shapes', () => {
|
||
|
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
|
||
|
})
|
||
|
})
|