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
This commit is contained in:
Anastasiya Semenkevich 2024-03-20 10:51:29 +03:00 committed by Anastasiya
parent ca44ce7915
commit fc33d7986e
3 changed files with 2 additions and 3 deletions

View File

@ -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') @allure.testcase('https://ethstatus.testrail.net/index.php?/cases/view/703057', 'Edit community')
@pytest.mark.case(703057) @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', [ @pytest.mark.parametrize('params', [
{ {
'name': 'Updated Name', 'name': 'Updated Name',

View File

@ -33,7 +33,7 @@ def keys_screen(main_window) -> KeysView:
@pytest.mark.parametrize('user_account', [constants.user.user_account_one]) @pytest.mark.parametrize('user_account', [constants.user.user_account_one])
@pytest.mark.parametrize('autocomplete, default_name', [ @pytest.mark.parametrize('autocomplete, default_name', [
pytest.param(False, 'Account 1'), 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): 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'): with step('Open import seed phrase view and enter seed phrase'):

View File

@ -31,7 +31,6 @@ def keys_screen(main_window) -> KeysView:
@pytest.mark.case(704597) @pytest.mark.case(704597)
@pytest.mark.parametrize('user_account', [constants.user.user_with_funds]) @pytest.mark.parametrize('user_account', [constants.user.user_with_funds])
@pytest.mark.parametrize('ens_name', [pytest.param(constants.user.ens_user_name)]) @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): def test_ens_name_purchase(keys_screen, main_window, user_account, ens_name):
with step('Open import seed phrase view and enter seed phrase'): 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() input_view = keys_screen.open_import_seed_phrase_view().open_seed_phrase_input_view()