Welcome to mirror list, hosted at ThFree Co, Russian Federation.

create_group_with_mattermost_team_spec.rb « mattermost « 7_configure « browser_ui « features « specs « qa « qa - gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: af24b36b734420ec392cc7185a3c8b3e8074a278 (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.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
end