Commit 7920d6de authored by Walmyr Lima e Silva Filho's avatar Walmyr Lima e Silva Filho

Merge branch '32427-improve-feature-spec' into 'master'

Improve feature spec to check for BE persistence

See merge request gitlab-org/gitlab!17569
parents 322eac34 9ebbc7b8
......@@ -234,6 +234,12 @@ describe 'Issue Boards', :js do
expect(find('.board:nth-child(2)')).to have_content(development.title)
expect(find('.board:nth-child(2)')).to have_content(planning.title)
# Make sure list positions are preserved after a reload
visit project_board_path(project, board)
expect(find('.board:nth-child(2)')).to have_content(development.title)
expect(find('.board:nth-child(2)')).to have_content(planning.title)
end
it 'dragging does not duplicate list' do
......
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