chore: comment out tests to fix them later

This commit is contained in:
Anastasiya Semenkevich 2024-03-28 13:24:22 +03:00 committed by Anastasiya
parent 9962d3580a
commit 9f0dc4bf8f
3 changed files with 3 additions and 2 deletions

View File

@ -28,6 +28,7 @@ pytestmark = marks
@pytest.mark.parametrize('user_data_one, user_data_two', [
(configs.testpath.TEST_USER_DATA / 'community_user_1', configs.testpath.TEST_USER_DATA / 'community_user_2')
])
@pytest.mark.skip(reason='https://github.com/status-im/desktop-qa-automation/issues/618')
def test_join_community_and_pin_unpin_message(multiple_instances, user_data_one, user_data_two):
user_one: UserAccount = constants.community_user_1
user_two: UserAccount = constants.community_user_2

View File

@ -26,7 +26,7 @@ pytestmark = marks
(configs.testpath.TEST_USER_DATA / 'group_chat_user_1', configs.testpath.TEST_USER_DATA / 'group_chat_user_2',
configs.testpath.TEST_USER_DATA / 'group_chat_user_3')
])
@pytest.mark.skip
@pytest.mark.skip(reason='https://github.com/status-im/desktop-qa-automation/issues/618')
# TODO: https://github.com/status-im/status-desktop/issues/14191
# TODO: https://github.com/status-im/status-desktop/issues/14193
def test_group_chat(multiple_instances, user_data_one, user_data_two, user_data_three):

View File

@ -102,4 +102,4 @@ def test_messaging_settings_accepting_request(multiple_instances):
aut_two.attach()
main_window.prepare()
messages_screen = main_window.left_panel.open_messages_screen()
assert user_one.name in messages_screen.left_panel.contacts
assert user_one.name in messages_screen.left_panel.get_chats_list()