Files
shields/services/github/github-pull-request-check-state.tester.js
Caleb Cartwright 855c9cd261 Remove dev dep imports in production code (#2937)
Fixes #2876 with @paulmelnikow's suggestion 

Moved imports of `ServiceTester` and `createServiceTester` to a separate file so that dev dependencies are not imported by service classes.
2019-02-05 21:51:55 -05:00

32 lines
1.0 KiB
JavaScript

'use strict'
const t = (module.exports = require('../tester').createServiceTester())
t.create('github pull request check state')
.get('/s/pulls/badges/shields/1110.json')
.expectJSON({ name: 'checks', value: 'failure' })
t.create('github pull request check state (pull request not found)')
.get('/s/pulls/badges/shields/5110.json')
.expectJSON({ name: 'checks', value: 'pull request or repo not found' })
t.create(
"github pull request check state (ref returned by github doesn't exist"
)
.get('/s/pulls/badges/shields/1110.json')
.intercept(
nock =>
nock('https://api.github.com', { allowUnmocked: true })
.get('/repos/badges/shields/pulls/1110')
.reply(200, JSON.stringify({ head: { sha: 'abc123' } })) // Looks like a real ref, but isn't.
)
.networkOn()
.expectJSON({
name: 'checks',
value: 'commit not found',
})
t.create('github pull request check contexts')
.get('/contexts/pulls/badges/shields/1110.json')
.expectJSON({ name: 'checks', value: '1 failure' })