summaryrefslogtreecommitdiff
path: root/spec/features/groups_spec.rb
diff options
context:
space:
mode:
authortauriedavis <taurie@gitlab.com>2016-11-08 12:48:28 -0800
committertauriedavis <taurie@gitlab.com>2016-11-09 17:24:17 -0800
commitd81d67bae44f189adddd1f4fb489a44e274e21b5 (patch)
treeb442ecfe14951d96edf9a4064e4cbcbd3e8c207c /spec/features/groups_spec.rb
parentc6d010986724faf10b46453d66eaca38a948fabf (diff)
downloadgitlab-ce-d81d67bae44f189adddd1f4fb489a44e274e21b5.tar.gz
19205 Redesign group page header to match new navigation19205-group-header-redesign
Diffstat (limited to 'spec/features/groups_spec.rb')
-rw-r--r--spec/features/groups_spec.rb8
1 files changed, 4 insertions, 4 deletions
diff --git a/spec/features/groups_spec.rb b/spec/features/groups_spec.rb
index 13bfe90302c..4b19886274e 100644
--- a/spec/features/groups_spec.rb
+++ b/spec/features/groups_spec.rb
@@ -80,7 +80,7 @@ feature 'Group', feature: true do
visit path
- expect(page).to have_css('.description > p > strong')
+ expect(page).to have_css('.group-home-desc > p > strong')
end
it 'passes through html-pipeline' do
@@ -88,7 +88,7 @@ feature 'Group', feature: true do
visit path
- expect(page).to have_css('.description > p > img')
+ expect(page).to have_css('.group-home-desc > p > img')
end
it 'sanitizes unwanted tags' do
@@ -96,7 +96,7 @@ feature 'Group', feature: true do
visit path
- expect(page).not_to have_css('.description h1')
+ expect(page).not_to have_css('.group-home-desc h1')
end
it 'permits `rel` attribute on links' do
@@ -104,7 +104,7 @@ feature 'Group', feature: true do
visit path
- expect(page).to have_css('.description a[rel]')
+ expect(page).to have_css('.group-home-desc a[rel]')
end
end
end