Noelia 4b17c25a25 test(suite_settings): Created new suite_settings
- Created new `suite_settings` where all related settings tests will be migrated to.
- `tst_languageSettings` has been moved to new `suite_settings`.
- `tst_settingsMenu` has been moved to new `suite_settings`.
- `tst_userIdentity` has been moved to new `suite_settings`.
Tests inside `suite_settings` still contain some broken tests.

Closes #7626
2022-10-04 17:13:14 +02:00

34 lines
1.8 KiB
Gherkin

Feature: User Identity
As a user I want to set my identity, that is: display name, bio and social links.
Background: Sign up and land
Given A first time user lands on the status desktop and generates new key
When user signs up with username tester123 and password TesTEr16843/!@00
Then the user lands on the signed in app
@mayfail
Scenario: User sets display name, bio and social links
When the user opens app settings screen
And the user opens the profile settings
Then the user's display name should be "tester123"
And the user's bio should be empty
And the user's social links should be empty
When the user sets display name to "tester123_changed"
And the user sets bio to "Hello, I am super tester!"
And the user sets display links to twitter: "twitter_handle", personal site: "status.im", "customLink": "customUrl"
And the user restarts the app
And the user tester123_changed logs in with password TesTEr16843/!@00
Then the user lands on the signed in app
When the user opens app settings screen
And the user opens the profile settings
Then the user's display name should be "tester123_changed"
And the user's bio should be "Hello, I am super tester!"
And the user's social links should be: "twitter_handle", personal site: "status.im", "customLink": "customUrl"
@merge
Scenario: The user sets can change own display name in profile popup
When the user opens own profile popup
Then in profile popup the user's display name should be "tester123"
When in profile popup the user sets display name to "tester123_changed"
Then in profile popup the user's display name should be "tester123_changed"