123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778 |
- import TestState from '../test-utils'
-
- describe('arrow shape', () => {
- const tt = new TestState()
- tt.resetDocumentState().send('SELECTED_ARROW_TOOL').save()
-
- it('creates shape', () => {
- // TODO
- null
- })
-
- it('cancels shape while creating', () => {
- // TODO
- null
- })
-
- it('moves shape', () => {
- // TODO
- null
- })
-
- it('rotates shape', () => {
- // TODO
- null
- })
-
- it('rotates shape in a group', () => {
- // TODO
- null
- })
-
- it('measures shape bounds', () => {
- // TODO
- null
- })
-
- it('measures shape rotated bounds', () => {
- // TODO
- null
- })
-
- it('transforms single shape', () => {
- // TODO
- null
- })
-
- it('transforms in a group', () => {
- // TODO
- null
- })
-
- /* -------------------- Specific -------------------- */
-
- it('creates compass-aligned shape with shift key', () => {
- // TODO
- null
- })
-
- it('changes start handle', () => {
- // TODO
- null
- })
-
- it('changes end handle', () => {
- // TODO
- null
- })
-
- it('changes bend handle', () => {
- // TODO
- null
- })
-
- it('resets bend handle when double-pointed', () => {
- // TODO
- null
- })
- })
|