test(@wallet): Add test for toggling network & balance
This commit is contained in:
parent
b06bae0d4e
commit
c721bdc2a4
|
@ -80,6 +80,24 @@ Feature: Status Desktop Wallet
|
||||||
| name | address |
|
| name | address |
|
||||||
| one | 0x8397bc3c5a60a1883174f722403d63a8833312b7 |
|
| one | 0x8397bc3c5a60a1883174f722403d63a8833312b7 |
|
||||||
|
|
||||||
|
Scenario Outline: User can edit a saved address
|
||||||
|
When the user adds a saved address named <name> and address <address>
|
||||||
|
And the user edits a saved address with name <name> to <new_name>
|
||||||
|
Then the name <new_name><name> is in the list of saved addresses
|
||||||
|
|
||||||
|
Examples:
|
||||||
|
| name | address | new_name |
|
||||||
|
| bar | 0x8397bc3c5a60a1883174f722403d63a8833312b7 | foo |
|
||||||
|
|
||||||
|
Scenario Outline: User can delete a saved address
|
||||||
|
When the user adds a saved address named <name> and address <address>
|
||||||
|
And the user deletes the saved address with name <name>
|
||||||
|
Then the name <name> is not in the list of saved addresses
|
||||||
|
|
||||||
|
Examples:
|
||||||
|
| name | address |
|
||||||
|
| one | 0x8397bc3c5a60a1883174f722403d63a8833312b7 |
|
||||||
|
|
||||||
@mayfail
|
@mayfail
|
||||||
Scenario: User can toggle network and see balances
|
Scenario: User can toggle network and see balances
|
||||||
When the user opens app settings screen
|
When the user opens app settings screen
|
||||||
|
|
Loading…
Reference in New Issue