mirror of
https://github.com/pcottle/learnGitBranching.git
synced 2025-08-06 11:04:35 +02:00
flip tree Y
This commit is contained in:
parent
e03bdc619f
commit
c7cede468b
4 changed files with 23 additions and 0 deletions
|
@ -10,4 +10,12 @@ describe('this store', function() {
|
|||
expect(GlobalStateStore.getIsAnimating()).toEqual(false);
|
||||
});
|
||||
|
||||
it('can change flip treey', function() {
|
||||
expect(GlobalStateStore.getFlipTreeY()).toEqual(false);
|
||||
GlobalStateActions.changeFlipTreeY(true);
|
||||
expect(GlobalStateStore.getFlipTreeY()).toEqual(true);
|
||||
GlobalStateActions.changeFlipTreeY(false);
|
||||
expect(GlobalStateStore.getFlipTreeY()).toEqual(false);
|
||||
});
|
||||
|
||||
});
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue