123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657 |
- import TestState from '../test-utils'
-
- describe('delete page command', () => {
- const tt = new TestState()
- tt.resetDocumentState()
-
- describe('when last page is selected', () => {
- it('does command', () => {
- // TODO
- null
- })
-
- it('un-does command', () => {
- // TODO
- null
- })
-
- it('re-does command', () => {
- // TODO
- null
- })
- })
-
- describe('when first page is selected', () => {
- it('does command', () => {
- // TODO
- null
- })
-
- it('un-does command', () => {
- // TODO
- null
- })
-
- it('re-does command', () => {
- // TODO
- null
- })
- })
-
- describe('when project only has one page', () => {
- it('does command', () => {
- // TODO
- null
- })
-
- it('un-does command', () => {
- // TODO
- null
- })
-
- it('re-does command', () => {
- // TODO
- null
- })
- })
- })
|