chore: replace 1 community test with channels test in critical suite
This commit is contained in:
parent
a43e3bee2f
commit
2bf83be9db
|
@ -13,7 +13,6 @@ from gui.main_window import MainWindow
|
|||
pytestmark = marks
|
||||
|
||||
|
||||
@pytest.mark.critical
|
||||
@allure.testcase('https://ethstatus.testrail.net/index.php?/cases/view/703630', 'Create community')
|
||||
@pytest.mark.case(703630)
|
||||
@pytest.mark.parametrize('params', [constants.community_params])
|
||||
|
@ -35,7 +34,8 @@ def test_create_community(user_account, main_screen: MainWindow, params):
|
|||
assert create_community_form.color == color
|
||||
|
||||
with step(
|
||||
'Select tags, verify that count of tags was changed and verify that selected tags are displayed in tags field'):
|
||||
'Select tags, verify that count of tags was changed and verify that selected tags are displayed in '
|
||||
'tags field'):
|
||||
create_community_form.tags = ['Activism', 'Art']
|
||||
assert create_community_form.tags == tags_to_set
|
||||
|
||||
|
|
|
@ -18,6 +18,7 @@ pytestmark = marks
|
|||
@pytest.mark.parametrize(
|
||||
'channel_name, channel_description, channel_emoji, channel_emoji_image, channel_color, new_channel_name, new_channel_description, new_channel_emoji',
|
||||
[('Channel', 'Description', 'sunglasses', None, '#4360df', 'New-channel', 'New channel description', 'thumbsup')])
|
||||
@pytest.mark.critical
|
||||
def test_create_edit_remove_community_channel(main_screen, channel_name, channel_description, channel_emoji, channel_emoji_image,
|
||||
channel_color, new_channel_name, new_channel_description, new_channel_emoji):
|
||||
with step('Create simple community'):
|
||||
|
|
Loading…
Reference in New Issue