-
-
Notifications
You must be signed in to change notification settings - Fork 5.2k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge branch 'dev' into pr/desktop/fix-tinymce-ctrl-p
- Loading branch information
Showing
14 changed files
with
404 additions
and
330 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,36 @@ | ||
import { setupDatabase, switchClient } from '../testing/test-utils'; | ||
import { runtime } from './toggleAllFolders'; | ||
import Setting from '../models/Setting'; | ||
import { CommandContext } from '../services/CommandService'; | ||
import { defaultState } from '../reducer'; | ||
|
||
const command = runtime(); | ||
|
||
const makeContext = (): CommandContext => { | ||
return { | ||
state: defaultState, | ||
dispatch: ()=>{}, | ||
}; | ||
}; | ||
|
||
describe('toggleAllFolders', () => { | ||
|
||
beforeEach(async () => { | ||
await setupDatabase(0); | ||
await switchClient(0); | ||
}); | ||
|
||
test('expanding all should expand the folders header, if previously collapsed', async () => { | ||
Setting.setValue('folderHeaderIsExpanded', false); | ||
|
||
// Collapsing all should leave the folder header as-is | ||
const context = makeContext(); | ||
await command.execute(context, true); | ||
expect(Setting.value('folderHeaderIsExpanded')).toBe(false); | ||
|
||
// Expanding all should also expand the folder header | ||
await command.execute(context, false); | ||
expect(Setting.value('folderHeaderIsExpanded')).toBe(true); | ||
}); | ||
|
||
}); |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -45,5 +45,7 @@ export const runtime = (): CommandRuntime => { | |
}); | ||
} | ||
}, | ||
|
||
enabledCondition: 'hasActivePluginEditor', | ||
}; | ||
}; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.