chore: add timeout for group chat

This commit is contained in:
Anastasiya Semiankevich 2023-12-27 11:09:56 +03:00 committed by Anastasiya
parent fe4325b5e1
commit 1356df4838
1 changed files with 2 additions and 1 deletions

View File

@ -12,13 +12,14 @@ from gui.screens.messages import MessagesScreen
pytestmark = marks
@allure.testcase('https://ethstatus.testrail.net/index.php?/cases/view/703014', 'Create a group and send messages')
@pytest.mark.case(703014)
@pytest.mark.timeout(timeout=240)
@pytest.mark.parametrize('user_data_one, user_data_two, user_data_three', [
(configs.testpath.TEST_USER_DATA / 'user_account_one', configs.testpath.TEST_USER_DATA / 'user_account_two',
configs.testpath.TEST_USER_DATA / 'user_account_two')
])
@pytest.mark.xfail(reason="https://github.com/status-im/status-desktop/issues/12440")
def test_group_chat(multiple_instance, user_data_one, user_data_two, user_data_three):
user_one: UserAccount = constants.user_account_one
user_two: UserAccount = constants.user_account_two