fix some tests

This commit is contained in:
Lisa P 2015-09-30 18:18:51 +02:00
parent 4687957514
commit eb502c9094
2 changed files with 6 additions and 8 deletions

View File

@ -63,5 +63,5 @@ test 'visiting /dashboard', ->
visit '/dashboard'
andThen ->
equal find('.dashboard-active .row').length, 1, 'there should be one repo displayed on dashboard'
equal find('.dashboard-active .row h2').text(), 'travis-web', 'travis-web repository should be displayed'
equal find('.dashboard-active .dashboard-row').length, 1, 'there should be one repo displayed on dashboard'
equal find('.dashboard-active .dashboard-row h2').text(), 'travis-web', 'travis-web repository should be displayed'

View File

@ -2,7 +2,7 @@
moduleForComponent 'owner-repo-tile', 'OwnerRepoTileComponent', {
# specify the other units that are required for this test
needs: ['helper:format-time', 'helper:format-duration', 'helper:format-sha']
needs: ['helper:format-time', 'helper:format-duration', 'helper:format-sha', 'component:status-icon', 'component:request-icon']
}
test 'it renders', ->
@ -35,8 +35,6 @@ test 'it renders', ->
@append()
ok component.$().hasClass('passed'), 'component should have state class (passed)'
equal component.$('.repo-title a').text().trim(), 'travis-chat', 'should display correct repo name'
equal component.$('.build a').text().trim(), '25', 'should display correct build numbee'
equal component.$('.build-status').text().trim(), 'passed', 'should display a last build state'
equal component.$('.commit a').text().trim(), '16fff34', 'should display correct commit sha'
equal component.$('.finished-at').text().trim(), '2 years ago', 'should display correct build duration'
equal component.$('.row-item:nth-of-type(1)').text().trim(), 'travis-chat', 'should display correct repo name'
equal component.$('.row-item:nth-of-type(3)').text().trim(), 'master', 'should display branch name'
equal component.$('.row-item:nth-of-type(4)').text().trim(), '16fff34', 'should display correct commit sha'