This commit is contained in:
Marty Alchin 2017-08-03 09:45:57 -04:00
Родитель 430862be18
Коммит 4d3a6eec72
1 изменённых файлов: 13 добавлений и 0 удалений

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

@ -44,4 +44,17 @@ describe('heroku ci', function () {
api.done()
})
it('displays recent runs formatted as JSON', function* () {
const api = nock('https://api.heroku.com')
.get(`/pipelines/${pipeline.id}`)
.reply(200, pipeline)
.get(`/pipelines/${pipeline.id}/test-runs`)
.reply(200, runs)
yield cmd.run({ flags: { pipeline: pipeline.id, json: true } })
expect(cli.stdout).to.include('\n "number": 123,\n')
api.done()
})
})