From 35d79a7771026973ca812ab0b69fcce97880b107 Mon Sep 17 00:00:00 2001 From: Valentina Novgorodtceva Date: Wed, 15 May 2024 16:20:36 +0700 Subject: [PATCH] chore: set timeout for send tests --- .../wallet: footer actions/test_footer_actions_send.py | 2 ++ 1 file changed, 2 insertions(+) diff --git a/test/e2e/tests/wallet_main_screen/wallet: footer actions/test_footer_actions_send.py b/test/e2e/tests/wallet_main_screen/wallet: footer actions/test_footer_actions_send.py index bab1ae1bba..4a7c64af36 100644 --- a/test/e2e/tests/wallet_main_screen/wallet: footer actions/test_footer_actions_send.py +++ b/test/e2e/tests/wallet_main_screen/wallet: footer actions/test_footer_actions_send.py @@ -31,6 +31,7 @@ def keys_screen(main_window) -> KeysView: @pytest.mark.parametrize('receiver_account_address, amount, asset, tab', [ pytest.param(constants.user.user_account_one.status_address, 0, 'Ether', 'Assets') ]) +@pytest.mark.timeout(timeout=120) def test_wallet_send_0_eth(keys_screen, main_window, user_account, receiver_account_address, amount, asset, tab): 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() @@ -93,6 +94,7 @@ allure.testcase('https://ethstatus.testrail.net/index.php?/cases/view/704602', @pytest.mark.parametrize('tab, receiver_account_address, amount, collectible', [ pytest.param('Collectibles', constants.user.user_with_funds.status_address, 1, 'Panda') ]) +@pytest.mark.timeout(timeout=120) def test_wallet_send_nft(keys_screen, main_window, user_account, tab, receiver_account_address, amount, collectible): 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()