summaryrefslogtreecommitdiff
path: root/spec/features/users/logout_spec.rb
blob: 64202776b9b18eb3eba3ed58f1f5eb7bf19da0a4 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
# frozen_string_literal: true

require 'spec_helper'

describe 'Logout/Sign out', :js do
  let(:user) { create(:user) }

  before do
    sign_in(user)
    visit root_path
  end

  it 'sign out redirects to sign in page' do
    gitlab_sign_out

    expect(current_path).to eq new_user_session_path
  end

  it 'sign out does not show signed out flash notice' do
    gitlab_sign_out

    expect(page).not_to have_selector('.flash-notice')
  end
end