summaryrefslogtreecommitdiff
path: root/qa/qa/specs/features/mattermost/group_create_spec.rb
diff options
context:
space:
mode:
Diffstat (limited to 'qa/qa/specs/features/mattermost/group_create_spec.rb')
-rw-r--r--qa/qa/specs/features/mattermost/group_create_spec.rb17
1 files changed, 0 insertions, 17 deletions
diff --git a/qa/qa/specs/features/mattermost/group_create_spec.rb b/qa/qa/specs/features/mattermost/group_create_spec.rb
deleted file mode 100644
index 097e1713aef..00000000000
--- a/qa/qa/specs/features/mattermost/group_create_spec.rb
+++ /dev/null
@@ -1,17 +0,0 @@
-module QA
- describe 'create a new group', :orchestrated, :mattermost do
- it 'creating a group with a mattermost team' do
- Runtime::Browser.visit(:gitlab, Page::Main::Login)
- Page::Main::Login.act { sign_in_using_credentials }
- Page::Menu::Main.act { go_to_groups }
-
- Page::Dashboard::Groups.perform do |page|
- page.go_to_new_group
-
- expect(page).to have_content(
- /Create a Mattermost team for this group/
- )
- end
- end
- end
-end