Return empty array instead of undefined

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

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

@ -26,7 +26,7 @@ describe('heroku ci:last', function () {
.get(`/apps/${app}/pipeline-couplings`) .get(`/apps/${app}/pipeline-couplings`)
.reply(200, coupling) .reply(200, coupling)
.get(`/pipelines/${coupling.pipeline.id}/test-runs`) .get(`/pipelines/${coupling.pipeline.id}/test-runs`)
.reply(200, undefined) .reply(200, [])
return cmd.run({ app }).then(() => { return cmd.run({ app }).then(() => {
expect(cli.stderr).to.contain('No Heroku CI runs found') expect(cli.stderr).to.contain('No Heroku CI runs found')