Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

web-wallet: Add Create Wallet flow tests #1453

Merged
merged 1 commit into from
Feb 23, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
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