2020-05-13 20:07:47 -04:00
|
|
|
# frozen_string_literal: true
|
|
|
|
|
|
|
|
require 'spec_helper'
|
|
|
|
|
2020-06-16 14:09:01 -04:00
|
|
|
RSpec.describe 'Issue Boards focus mode', :js do
|
2020-05-13 20:07:47 -04:00
|
|
|
let(:project) { create(:project, :public) }
|
|
|
|
|
|
|
|
before do
|
|
|
|
visit project_boards_path(project)
|
|
|
|
|
|
|
|
wait_for_requests
|
|
|
|
end
|
|
|
|
|
2021-03-28 20:09:36 -04:00
|
|
|
it 'shows focus mode button to anonymous users' do
|
2022-03-31 14:08:39 -04:00
|
|
|
expect(page).to have_button _('Toggle focus mode')
|
2020-05-13 20:07:47 -04:00
|
|
|
end
|
|
|
|
end
|