From fc33d7986e24f079fed1fac1d2f5fc428f26ba42 Mon Sep 17 00:00:00 2001 From: Anastasiya Semenkevich Date: Wed, 20 Mar 2024 10:51:29 +0300 Subject: [PATCH] chore: enable tests enable ens test because bug is fixed bring back import seed test to critical path bring back edit community test to critical path --- test/e2e/tests/communities/test_communities.py | 2 +- test/e2e/tests/onboarding/test_onboarding_import_seed.py | 2 +- test/e2e/tests/settings/test_ens_name_purchase.py | 1 - 3 files changed, 2 insertions(+), 3 deletions(-) diff --git a/test/e2e/tests/communities/test_communities.py b/test/e2e/tests/communities/test_communities.py index 57951a780f..7234572b32 100644 --- a/test/e2e/tests/communities/test_communities.py +++ b/test/e2e/tests/communities/test_communities.py @@ -84,7 +84,7 @@ def test_create_community(user_account, main_screen: MainWindow, params): @allure.testcase('https://ethstatus.testrail.net/index.php?/cases/view/703057', 'Edit community') @pytest.mark.case(703057) -# @pytest.mark.critical TODO: figure out why it is failing on the creation form +@pytest.mark.critical @pytest.mark.parametrize('params', [ { 'name': 'Updated Name', diff --git a/test/e2e/tests/onboarding/test_onboarding_import_seed.py b/test/e2e/tests/onboarding/test_onboarding_import_seed.py index 5d3603246e..09e1841352 100644 --- a/test/e2e/tests/onboarding/test_onboarding_import_seed.py +++ b/test/e2e/tests/onboarding/test_onboarding_import_seed.py @@ -33,7 +33,7 @@ def keys_screen(main_window) -> KeysView: @pytest.mark.parametrize('user_account', [constants.user.user_account_one]) @pytest.mark.parametrize('autocomplete, default_name', [ pytest.param(False, 'Account 1'), - pytest.param(True, 'Account 1') + pytest.param(True, 'Account 1', marks=pytest.mark.critical) ]) def test_import_seed_phrase(aut: AUT, keys_screen, main_window, user_account, default_name: str, autocomplete: bool): with step('Open import seed phrase view and enter seed phrase'): diff --git a/test/e2e/tests/settings/test_ens_name_purchase.py b/test/e2e/tests/settings/test_ens_name_purchase.py index d2d5ac14ba..5c9ec99a09 100644 --- a/test/e2e/tests/settings/test_ens_name_purchase.py +++ b/test/e2e/tests/settings/test_ens_name_purchase.py @@ -31,7 +31,6 @@ def keys_screen(main_window) -> KeysView: @pytest.mark.case(704597) @pytest.mark.parametrize('user_account', [constants.user.user_with_funds]) @pytest.mark.parametrize('ens_name', [pytest.param(constants.user.ens_user_name)]) -@pytest.mark.skip(reason='https://github.com/status-im/status-desktop/issues/13964') def test_ens_name_purchase(keys_screen, main_window, user_account, ens_name): with step('Open import seed phrase view and enter seed phrase'): input_view = keys_screen.open_import_seed_phrase_view().open_seed_phrase_input_view()