summaryrefslogtreecommitdiff
path: root/qa/qa/specs/features/browser_ui/1_manage/group/create_group_with_mattermost_team_spec.rb
blob: 94d20106de4ea0525d933b985e62c1ed4aca6eed (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
# frozen_string_literal: true

module QA
  context 'Configure', :orchestrated, :mattermost do
    describe 'Mattermost support' do
      it 'user creates a group with a mattermost team' do
        Runtime::Browser.visit(:gitlab, Page::Main::Login)
        Page::Main::Login.perform(&:sign_in_using_credentials)
        Page::Main::Menu.perform(&:go_to_groups)

        Page::Dashboard::Groups.perform do |page|
          page.click_new_group

          expect(page).to have_content(
            /Create a Mattermost team for this group/
          )
        end
      end
    end
  end
end