40 lines
681 B
TypeScript
40 lines
681 B
TypeScript
import TestState from '../test-utils'
|
|
|
|
describe('move-to-page command', () => {
|
|
const tt = new TestState()
|
|
tt.resetDocumentState()
|
|
|
|
describe('when one item is selected', () => {
|
|
it('does not change anything', () => {
|
|
// TODO
|
|
null
|
|
})
|
|
})
|
|
|
|
describe('when multiple items are selected', () => {
|
|
it('does command', () => {
|
|
// TODO
|
|
null
|
|
})
|
|
|
|
it('un-does command', () => {
|
|
// TODO
|
|
null
|
|
})
|
|
|
|
it('re-does command', () => {
|
|
// TODO
|
|
null
|
|
})
|
|
})
|
|
|
|
it('reparents children of groups to page', () => {
|
|
// TODO
|
|
null
|
|
})
|
|
|
|
it('correctly preserves moved groups', () => {
|
|
// TODO
|
|
null
|
|
})
|
|
})
|