chore: disabled one test because of bug and one because it's need to be fixed (tomorrow)
This commit is contained in:
parent
b8376f76f2
commit
d902f1e795
|
@ -32,6 +32,7 @@ def test_create_community_channel(main_screen: MainWindow, channel_name, channel
|
|||
@pytest.mark.case(703050)
|
||||
@pytest.mark.parametrize('channel_name, channel_description, channel_emoji, channel_emoji_image, channel_color',
|
||||
[('Channel', 'Description', 'sunglasses', None, '#4360df')])
|
||||
@pytest.mark.skip(reason="https://github.com/status-im/desktop-qa-automation/issues/475")
|
||||
def test_edit_community_channel(main_screen, channel_name, channel_description, channel_emoji, channel_emoji_image,
|
||||
channel_color):
|
||||
with step('Create simple community'):
|
||||
|
|
|
@ -17,6 +17,7 @@ from gui.main_window import MainWindow
|
|||
@pytest.mark.parametrize('user_data_one, user_data_two', [
|
||||
(configs.testpath.TEST_USER_DATA / 'user_account_one', configs.testpath.TEST_USER_DATA / 'user_account_two')
|
||||
])
|
||||
@pytest.mark.xfail(reason='https://github.com/status-im/status-desktop/issues/13375')
|
||||
def test_join_community_via_owner_invite(multiple_instance, user_data_one, user_data_two):
|
||||
user_one: UserAccount = constants.user_account_one
|
||||
user_two: UserAccount = constants.user_account_two
|
||||
|
|
|
@ -20,6 +20,7 @@ pytestmark = marks
|
|||
(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.skip(reason="https://github.com/status-im/desktop-qa-automation/issues/475")
|
||||
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
|
||||
|
|
Loading…
Reference in New Issue