Commit f6bfee6b authored by Rémy Coutable's avatar Rémy Coutable

Make sure the user is logged out before they're logged in again

Signed-off-by: default avatarRémy Coutable <remy@rymai.me>
parent 75f6e91f
...@@ -178,9 +178,10 @@ feature 'Issues > User uses quick actions', :js do ...@@ -178,9 +178,10 @@ feature 'Issues > User uses quick actions', :js do
end end
context 'when the project is valid but the user not authorized' do context 'when the project is valid but the user not authorized' do
let(:project_unauthorized) {create(:project, :public)} let(:project_unauthorized) { create(:project, :public) }
before do before do
gitlab_sign_out
sign_in(user) sign_in(user)
visit project_issue_path(project, issue) visit project_issue_path(project, issue)
end end
...@@ -195,6 +196,7 @@ feature 'Issues > User uses quick actions', :js do ...@@ -195,6 +196,7 @@ feature 'Issues > User uses quick actions', :js do
context 'when the project is invalid' do context 'when the project is invalid' do
before do before do
gitlab_sign_out
sign_in(user) sign_in(user)
visit project_issue_path(project, issue) visit project_issue_path(project, issue)
end end
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment