2019-07-25 01:24:42 -04:00
|
|
|
# frozen_string_literal: true
|
|
|
|
|
2019-08-29 03:56:52 -04:00
|
|
|
require 'spec_helper'
|
2016-10-06 09:36:44 -04:00
|
|
|
|
2021-03-23 08:09:33 -04:00
|
|
|
RSpec.describe 'Project issue boards sidebar', :js do
|
2017-09-19 09:01:01 -04:00
|
|
|
include BoardHelpers
|
|
|
|
|
2021-03-23 08:09:33 -04:00
|
|
|
let_it_be(:user) { create(:user) }
|
2022-01-05 01:13:32 -05:00
|
|
|
let_it_be(:group) { create(:group, :public) }
|
|
|
|
let_it_be(:project) { create(:project, :public, namespace: group) }
|
2021-03-23 08:09:33 -04:00
|
|
|
let_it_be(:board) { create(:board, project: project) }
|
2022-01-05 01:13:32 -05:00
|
|
|
let_it_be(:label) { create(:label, project: project, name: 'Label') }
|
|
|
|
let_it_be(:list) { create(:list, board: board, label: label, position: 0) }
|
2021-04-01 08:08:56 -04:00
|
|
|
|
|
|
|
let_it_be(:issue, reload: true) { create(:issue, project: project, relative_position: 1) }
|
2017-02-17 05:33:18 -05:00
|
|
|
|
2017-08-11 06:36:03 -04:00
|
|
|
before do
|
2018-07-11 10:36:08 -04:00
|
|
|
project.add_maintainer(user)
|
2016-10-06 09:36:44 -04:00
|
|
|
|
2017-06-21 19:44:10 -04:00
|
|
|
sign_in(user)
|
2016-10-06 09:36:44 -04:00
|
|
|
|
2017-07-06 12:20:50 -04:00
|
|
|
visit project_board_path(project, board)
|
2016-10-06 09:36:44 -04:00
|
|
|
|
2021-04-01 08:08:56 -04:00
|
|
|
wait_for_requests
|
2016-10-06 09:36:44 -04:00
|
|
|
end
|
|
|
|
|
2021-04-01 08:08:56 -04:00
|
|
|
it_behaves_like 'issue boards sidebar'
|
2016-10-06 09:36:44 -04:00
|
|
|
|
2021-04-01 08:08:56 -04:00
|
|
|
def first_card
|
|
|
|
find('.board:nth-child(1)').first("[data-testid='board_card']")
|
2016-10-06 09:36:44 -04:00
|
|
|
end
|
|
|
|
|
2021-04-01 08:08:56 -04:00
|
|
|
def click_first_issue_card
|
|
|
|
click_card(first_card)
|
2016-10-07 04:55:12 -04:00
|
|
|
end
|
2021-07-13 02:10:10 -04:00
|
|
|
|
|
|
|
def refresh_and_click_first_card
|
|
|
|
page.refresh
|
|
|
|
|
|
|
|
wait_for_requests
|
|
|
|
|
|
|
|
first_card.click
|
|
|
|
end
|
2016-10-06 09:36:44 -04:00
|
|
|
end
|