Merge branch 'master' of github.com:travis-ci/travis-web

This commit is contained in:
Lisa Passing 2015-03-23 14:05:20 +01:00
commit 81c6c7b9f8
3 changed files with 4 additions and 6 deletions

View File

@ -3,7 +3,7 @@
`import { languageConfigKeys } from 'travis/utils/keys-map';`
JobsItemComponent = Ember.Component.extend
tagName: 'li'
tagName: 'div'
classNameBindings: ['job.state']
classNames: ['tile', 'tile--jobs', 'row']

View File

@ -12,10 +12,8 @@
</h2>
{{/if}}
<ul>
{{#each job in jobs}}
{{jobs-item job=job}}
{{/each}}
</ul>
</section>
{{/if}}

View File

@ -12,9 +12,9 @@ test 'it renders a list of jobs', ->
@append()
equal component.$('.build-title').text().trim(), 'Build Jobs'
equal component.$('li').length, 2, 'there should be 2 job items'
ok component.$('li:nth(0)').hasClass('passed'), 'passed class should be applied to a job'
ok component.$('li:nth(1)').hasClass('failed'), 'failed class should be applied to a job'
equal component.$('.tile--jobs').length, 2, 'there should be 2 job items'
ok component.$('.tile--jobs:nth(0)').hasClass('passed'), 'passed class should be applied to a job'
ok component.$('.tile--jobs:nth(1)').hasClass('failed'), 'failed class should be applied to a job'
test 'it renders "Allowed Failures" version without a `required` property', ->
jobs = [Ember.Object.create(id: 1)]