chore: enabled login_with_wrong_password test
This commit is contained in:
parent
385c7cf803
commit
6a2bbe1904
|
@ -18,6 +18,7 @@ from gui.screens.onboarding import AllowNotificationsView, WelcomeToStatusView,
|
||||||
|
|
||||||
pytestmark = marks
|
pytestmark = marks
|
||||||
|
|
||||||
|
|
||||||
@pytest.fixture
|
@pytest.fixture
|
||||||
def keys_screen(main_window) -> KeysView:
|
def keys_screen(main_window) -> KeysView:
|
||||||
with step('Open Generate new keys view'):
|
with step('Open Generate new keys view'):
|
||||||
|
@ -32,7 +33,6 @@ def keys_screen(main_window) -> KeysView:
|
||||||
@pytest.mark.case(702991)
|
@pytest.mark.case(702991)
|
||||||
@pytest.mark.parametrize('error', [OnboardingMessages.PASSWORD_INCORRECT.value
|
@pytest.mark.parametrize('error', [OnboardingMessages.PASSWORD_INCORRECT.value
|
||||||
])
|
])
|
||||||
@pytest.mark.skip(reason="https://github.com/status-im/status-desktop/issues/13758")
|
|
||||||
def test_login_with_wrong_password(aut: AUT, keys_screen, main_window, error: str):
|
def test_login_with_wrong_password(aut: AUT, keys_screen, main_window, error: str):
|
||||||
user_one: UserAccount = constants.user_account_one
|
user_one: UserAccount = constants.user_account_one
|
||||||
user_one_wrong_password: UserAccount = constants.user_account_one_changed_password
|
user_one_wrong_password: UserAccount = constants.user_account_one_changed_password
|
||||||
|
|
Loading…
Reference in New Issue