summaryrefslogtreecommitdiff
path: root/qa/qa/specs/features/mattermost/group_create_spec.rb
blob: 2e27a28522324394ca10c4b3534abad8572715ab (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
module QA
  feature 'create a new group', :mattermost do
    scenario '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