Try reversing order to test test depdendency

This commit is contained in:
max beizer 2016-11-08 13:33:47 -06:00 коммит произвёл Andrew Appleton
Родитель 084009516c
Коммит 5baccd7e44
Не найден ключ, соответствующий данной подписи
Идентификатор ключа GPG: 74BD60891CAC329A
1 изменённых файлов: 15 добавлений и 15 удалений

Просмотреть файл

@ -20,6 +20,21 @@ describe('heroku ci:last', function () {
}
})
describe('when pipeline does not have anuy runs', function () {
it('reports that there are no runs', function () {
let api = nock('https://api.heroku.com')
.get(`/apps/${app}/pipeline-couplings`)
.reply(200, coupling)
.get(`/pipelines/${coupling.pipeline.id}/test-runs`)
.reply(200, undefined)
return cmd.run({ app }).then(() => {
expect(cli.stderr).to.contain('No Heroku CI runs found')
api.done()
})
})
})
describe('when pipeline has runs', function () {
it('displays the results of the latest run', function () {
let num = 1234
@ -35,19 +50,4 @@ describe('heroku ci:last', function () {
})
})
})
// describe('when pipeline does not have anuy runs', function () {
// it('reports that there are no runs', function () {
// let api = nock('https://api.heroku.com')
// .get(`/apps/${app}/pipeline-couplings`)
// .reply(200, coupling)
// .get(`/pipelines/${coupling.pipeline.id}/test-runs`)
// .reply(200, undefined)
//
// return cmd.run({ app }).then(() => {
// expect(cli.stderr).to.contain('No Heroku CI runs found')
// api.done()
// })
// })
// })
})