26 lines
786 B
JavaScript
26 lines
786 B
JavaScript
import { isBuildStatus } from '../build-status.js'
|
|
import { createServiceTester } from '../tester.js'
|
|
export const t = await createServiceTester()
|
|
|
|
t.create('codeship (valid, no branch)')
|
|
.get('/30419df0-80ff-0135-f7fb-06994b6b032d.json')
|
|
.expectBadge({
|
|
label: 'build',
|
|
message: isBuildStatus,
|
|
})
|
|
|
|
t.create('codeship (valid, with branch)')
|
|
.get('/0bdb0440-3af5-0133-00ea-0ebda3a33bf6/master.json')
|
|
.expectBadge({
|
|
label: 'build',
|
|
message: isBuildStatus,
|
|
})
|
|
|
|
t.create('codeship (repo not found)')
|
|
.get('/not-a-repo.json')
|
|
.expectBadge({ label: 'build', message: 'project not found' })
|
|
|
|
t.create('codeship (branch not found)')
|
|
.get('/30419df0-80ff-0135-f7fb-06994b6b032d/not-a-branch.json')
|
|
.expectBadge({ label: 'build', message: 'branch not found' })
|