提交 3bded603 编写于 作者: W Walmyr Lima

Refactor check mentions for xss test

The refactor consists in:
- Better scopping preconditions and the test definition
- Removing a variable that was being used in a single palce, and
use the string directly instead.
上级 9967b2d1
......@@ -3,9 +3,7 @@
module QA
context 'Plan' do
describe 'check xss occurence in @mentions in issues' do
let(:issue_title) { 'issue title' }
it 'user mentions a user in comment' do
before do
Runtime::Browser.visit(:gitlab, Page::Main::Login)
Page::Main::Login.perform(&:sign_in_using_credentials)
......@@ -25,11 +23,13 @@ module QA
end
issue = Resource::Issue.fabricate_via_api! do |issue|
issue.title = issue_title
issue.title = 'issue title'
issue.project = project
end
issue.visit!
end
it 'user mentions a user in comment' do
Page::Project::Issue::Show.perform do |show_page|
show_page.select_all_activities_filter
show_page.comment('cc-ing you here @eve')
......
Markdown is supported
0% .
You are about to add 0 people to the discussion. Proceed with caution.
先完成此消息的编辑!
想要评论请 注册