summaryrefslogtreecommitdiff
path: root/spec/features/markdown_spec.rb
diff options
context:
space:
mode:
authorAlfredo Sumaran <alfredo@gitlab.com>2016-06-08 02:02:55 -0500
committerAlfredo Sumaran <alfredo@gitlab.com>2016-06-08 13:07:20 -0500
commit7be19db42fd51da23b1ef658263897213b624500 (patch)
treea2bd4dfeffc7b1a8916580eb0eb7b8a5e56c6fa0 /spec/features/markdown_spec.rb
parente6daf1f899b412ded9a16674865b09f31fc7c75a (diff)
downloadgitlab-ce-7be19db42fd51da23b1ef658263897213b624500.tar.gz
Set target="_blank" for external links
Diffstat (limited to 'spec/features/markdown_spec.rb')
-rw-r--r--spec/features/markdown_spec.rb10
1 files changed, 10 insertions, 0 deletions
diff --git a/spec/features/markdown_spec.rb b/spec/features/markdown_spec.rb
index 7663d193354..cabccdacf87 100644
--- a/spec/features/markdown_spec.rb
+++ b/spec/features/markdown_spec.rb
@@ -173,10 +173,20 @@ describe 'GitLab Markdown', feature: true do
expect(link.attr('rel')).to include('noreferrer')
end
+ it 'adds _blank to target attribute for external links' do
+ link = doc.at_css('a:contains("Google")')
+ expect(link.attr('target')).to match('_blank')
+ end
+
it 'ignores internal link' do
link = doc.at_css('a:contains("GitLab Root")')
expect(link.attr('rel')).not_to match 'nofollow'
end
+
+ it 'does not set _blank to target attribute for internal links' do
+ link = doc.at_css('a:contains("GitLab Root")')
+ expect(link.attr('target')).not_to match '_blank'
+ end
end
end