summaryrefslogtreecommitdiff
path: root/qa/qa/specs/features/mattermost/group_create_spec.rb
blob: c4afd83c8e4d524ad640ea08b12d1ed7817d85c6 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
module QA
  feature 'create a new group', :mattermost do
    scenario 'creating a group with a mattermost team' do
      Page::Main::Entry.act { sign_in_using_credentials }
      Page::Main::Menu.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