diff options
author | GitLab Bot <gitlab-bot@gitlab.com> | 2019-11-06 21:06:44 +0000 |
---|---|---|
committer | GitLab Bot <gitlab-bot@gitlab.com> | 2019-11-06 21:06:44 +0000 |
commit | cf85de264d049f1f8ff14b23f38f8331ae4c60fa (patch) | |
tree | 73188488af9f2a6d40df4f62b3d84dc6536e2ffc /spec/features/groups | |
parent | bcdcff749598f4275f7c250c07cbfe632cfe7fdb (diff) | |
download | gitlab-ce-cf85de264d049f1f8ff14b23f38f8331ae4c60fa.tar.gz |
Add latest changes from gitlab-org/gitlab@master
Diffstat (limited to 'spec/features/groups')
-rw-r--r-- | spec/features/groups/issues_spec.rb | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/spec/features/groups/issues_spec.rb b/spec/features/groups/issues_spec.rb index 5d87c9d7be8..b9b233026fd 100644 --- a/spec/features/groups/issues_spec.rb +++ b/spec/features/groups/issues_spec.rb @@ -11,6 +11,10 @@ describe 'Group issues page' do let(:project_with_issues_disabled) { create(:project, :issues_disabled, group: group) } let(:path) { issues_group_path(group) } + before do + stub_feature_flags({ vue_issuables_list: { enabled: false, thing: group } }) + end + context 'with shared examples' do let(:issuable) { create(:issue, project: project, title: "this is my created issuable")} |