24 lines
578 B
JavaScript
24 lines
578 B
JavaScript
'use strict'
|
|
|
|
const t = (module.exports = require('../tester').createServiceTester())
|
|
const { isMetric } = require('../test-validators')
|
|
|
|
t.create('Contributors').get('/contributors/badges/shields.json').expectBadge({
|
|
label: 'contributors',
|
|
message: isMetric,
|
|
})
|
|
|
|
t.create('1 contributor')
|
|
.get('/contributors/badges/shields-tests.json')
|
|
.expectBadge({
|
|
label: 'contributors',
|
|
message: '1',
|
|
})
|
|
|
|
t.create('Contributors (repo not found)')
|
|
.get('/contributors/badges/helmets.json')
|
|
.expectBadge({
|
|
label: 'contributors',
|
|
message: 'repo not found',
|
|
})
|