-
Notifications
You must be signed in to change notification settings - Fork 684
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #4331 from magento/sync-14.1.0
* v14.1.0-alpha.1 * PWA-3273:Get Minimum Password Length from configuration (#4319) * PWA-3273:Get Minimum Password Length from configuration * PWA-3273 adding updated testcases * correcting minimum password code * PWA-3341: Customet login (#4322) --------- Co-authored-by: Aanchal Pawar <[email protected]> * alpha1 issue (#4325) * v14.1.0-alpha.3 * v14.1.0-alpha.4 * v14.1.0-beta.1 * v14.1.0 --------- Co-authored-by: devops-pwa-codebuild <[email protected]> Co-authored-by: glo11372 <[email protected]>
- Loading branch information
Showing
28 changed files
with
712 additions
and
7,607 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
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 |
---|---|---|
@@ -1,6 +1,6 @@ | ||
// Jest Snapshot v1, https://goo.gl/fbAQLP | ||
|
||
exports[`handle submit event creates an account, dispatches event, signs in, and generates a new cart 1`] = ` | ||
exports[`handle submit event should dispatch create account event 1`] = ` | ||
Object { | ||
"payload": Object { | ||
"email": "[email protected]", | ||
|
@@ -12,42 +12,24 @@ Object { | |
} | ||
`; | ||
|
||
exports[`returns the correct shape 1`] = ` | ||
exports[`should return properly 1`] = ` | ||
Object { | ||
"errors": Map { | ||
"createAccountQuery" => undefined, | ||
"signInMutation" => undefined, | ||
"createAccountQuery" => null, | ||
"signInMutation" => null, | ||
}, | ||
"handleEnterKeyPress": [Function], | ||
"handleSubmit": [Function], | ||
"initialValues": Object { | ||
"customer": Object { | ||
"email": "[email protected]", | ||
"firstname": "Philip", | ||
"lastname": "Fry", | ||
}, | ||
}, | ||
"isDisabled": false, | ||
"recaptchaWidgetProps": Object {}, | ||
} | ||
`; | ||
|
||
exports[`returns the correct shape with no initial values 1`] = ` | ||
Object { | ||
"errors": Map { | ||
"createAccountQuery" => undefined, | ||
"signInMutation" => undefined, | ||
}, | ||
"handleEnterKeyPress": [Function], | ||
"handleSubmit": [Function], | ||
"initialValues": Object { | ||
"customer": Object { | ||
"email": undefined, | ||
"firstname": undefined, | ||
"lastname": undefined, | ||
"email": "[email protected]", | ||
"firstname": "Gooseton", | ||
"lastname": "Jr", | ||
}, | ||
"userName": "gooseton", | ||
}, | ||
"isDisabled": false, | ||
"minimumPasswordLength": 8, | ||
"recaptchaWidgetProps": Object {}, | ||
} | ||
`; |
Oops, something went wrong.