Skip to content

Commit

Permalink
web-wallet: Add Create Wallet flow tests
Browse files Browse the repository at this point in the history
Resolves #1443

Address review comments
  • Loading branch information
nortonandreev committed Feb 23, 2024
1 parent 1b234bd commit dabf66d
Show file tree
Hide file tree
Showing 6 changed files with 3,612 additions and 15 deletions.
3 changes: 2 additions & 1 deletion web-wallet/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
## [Unreleased]

### Added

- Add Create Wallet flow tests [#1443]
- Add visible version, commit hash and build date [#1441]
- Add Address validation (Transfer flow) [#1377]

Expand Down Expand Up @@ -114,6 +114,7 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
[#1445]: https://github.com/dusk-network/rusk/issues/1445
[#1441]: https://github.com/dusk-network/rusk/issues/1441
[#1460]: https://github.com/dusk-network/rusk/issues/1460
[#1443]: https://github.com/dusk-network/rusk/issues/1443

<!-- VERSIONS -->
[Unreleased]: https://github.com/dusk-network/rusk/tree/master/web-wallet
Expand Down
6 changes: 3 additions & 3 deletions web-wallet/src/routes/(welcome)/setup/create/+page.svelte
Original file line number Diff line number Diff line change
Expand Up @@ -89,7 +89,7 @@
Backup<br/>
<mark>Mnemonic Phrase</mark>
</h2>
<MnemonicPhrase bind:mnemonicPhrase={mnemonicPhrase}/>
<MnemonicPhrase bind:mnemonicPhrase/>
</WizardStep>
<WizardStep
step={2}
Expand All @@ -107,8 +107,8 @@
</h2>
<MnemonicValidate
bind:isValid={isValidMnemonic}
bind:enteredMnemonicPhrase={enteredMnemonicPhrase}
bind:mnemonicPhrase={mnemonicPhrase}
bind:enteredMnemonicPhrase
bind:mnemonicPhrase
/>
</WizardStep>
<WizardStep
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@
<div class="flex flex-col gap-1">
<p>Ensure you have backed up the Mnemonic phrase.</p>
<Mnemonic
bind:enteredMnemonicPhrase={enteredMnemonicPhrase}
bind:enteredMnemonicPhrase
mnemonicPhrase={shuffleArray(mnemonicPhrase)}
type="validate"
/>
Expand Down
Loading

0 comments on commit dabf66d

Please sign in to comment.