2020-05-24 23:13:21 +05:30
|
|
|
# frozen_string_literal: true
|
|
|
|
|
|
|
|
require 'spec_helper'
|
|
|
|
|
2020-06-23 00:09:42 +05:30
|
|
|
RSpec.describe 'Issue Boards focus mode', :js do
|
2020-05-24 23:13:21 +05:30
|
|
|
let(:project) { create(:project, :public) }
|
|
|
|
|
|
|
|
before do
|
|
|
|
visit project_boards_path(project)
|
|
|
|
|
|
|
|
wait_for_requests
|
|
|
|
end
|
|
|
|
|
2021-04-29 21:17:54 +05:30
|
|
|
it 'shows focus mode button to anonymous users' do
|
2022-06-21 17:19:12 +05:30
|
|
|
expect(page).to have_button _('Toggle focus mode')
|
2020-05-24 23:13:21 +05:30
|
|
|
end
|
|
|
|
end
|