diff options
author | Annabel Dunstone Gray <annabel.dunstone@gmail.com> | 2016-10-06 09:46:07 -0500 |
---|---|---|
committer | Annabel Dunstone Gray <annabel.dunstone@gmail.com> | 2016-10-06 17:51:02 -0500 |
commit | 35e231b5cce463c793a76cf1961e23bf63f82c7c (patch) | |
tree | 4a91778bb18a20cb97615be1e91523c459a01eea /spec/features/boards | |
parent | f4c2f3a46652e4bb64814d327d96be5c7fcab669 (diff) | |
download | gitlab-ce-35e231b5cce463c793a76cf1961e23bf63f82c7c.tar.gz |
Update issue board spec
Diffstat (limited to 'spec/features/boards')
-rw-r--r-- | spec/features/boards/boards_spec.rb | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/spec/features/boards/boards_spec.rb b/spec/features/boards/boards_spec.rb index 26ea06e002b..470e2bdbb9b 100644 --- a/spec/features/boards/boards_spec.rb +++ b/spec/features/boards/boards_spec.rb @@ -34,14 +34,14 @@ describe 'Issue Boards', feature: true, js: true do end it 'creates default lists' do - lists = ['Backlog', 'Development', 'Testing', 'Production', 'Ready', 'Done'] + lists = ['Backlog', 'To Do', 'Doing', 'Done'] page.within(find('.board-blank-state')) do click_button('Add default lists') end wait_for_vue_resource - expect(page).to have_selector('.board', count: 6) + expect(page).to have_selector('.board', count: 4) page.all('.board').each_with_index do |list, i| expect(list.find('.board-title')).to have_content(lists[i]) |