mirror of
https://github.com/scratchfoundation/scratch-www.git
synced 2024-11-22 15:17:53 -05:00
Roll out new Join Flow.
This commit is contained in:
parent
0bc3df1bd2
commit
5b351b6515
2 changed files with 2 additions and 2 deletions
|
@ -19,7 +19,7 @@ const Types = keyMirror({
|
|||
});
|
||||
|
||||
module.exports.getInitialState = () => ({
|
||||
useScratch3Registration: false,
|
||||
useScratch3Registration: true,
|
||||
accountNavOpen: false,
|
||||
canceledDeletionOpen: false,
|
||||
loginError: null,
|
||||
|
|
|
@ -28,7 +28,7 @@ describe('unit test lib/validate.js', () => {
|
|||
expect(navigationReducer(defaultState, {type: 'anything'}).loginOpen).toBe(false);
|
||||
expect(navigationReducer(defaultState, {type: 'anything'}).registrationOpen).toBe(false);
|
||||
expect(navigationReducer(defaultState, {type: 'anything'}).searchTerm).toBe('');
|
||||
expect(navigationReducer(defaultState, {type: 'anything'}).useScratch3Registration).toBe(false);
|
||||
expect(navigationReducer(defaultState, {type: 'anything'}).useScratch3Registration).toBe(true);
|
||||
});
|
||||
|
||||
// handleToggleAccountNav
|
||||
|
|
Loading…
Reference in a new issue