Deprecate [magnumci bithound] (#1770)
* deprecate Magnum CI badge * deprecate BitHound badges
This commit is contained in:
27
services/bithound/bithound.tester.js
Normal file
27
services/bithound/bithound.tester.js
Normal file
@@ -0,0 +1,27 @@
|
||||
'use strict';
|
||||
|
||||
const ServiceTester = require('../service-tester');
|
||||
|
||||
const t = new ServiceTester({ id: 'bithound', title: 'BitHound' });
|
||||
module.exports = t;
|
||||
|
||||
t.create('no longer available (code)')
|
||||
.get('/code/github/rexxars/sse-channel.json')
|
||||
.expectJSON({
|
||||
name: 'bithound',
|
||||
value: 'no longer available'
|
||||
});
|
||||
|
||||
t.create('no longer available (dependencies)')
|
||||
.get('/dependencies/github/rexxars/sse-channel.json')
|
||||
.expectJSON({
|
||||
name: 'bithound',
|
||||
value: 'no longer available'
|
||||
});
|
||||
|
||||
t.create('no longer available (devDpendencies)')
|
||||
.get('/devDependencies/github/rexxars/sse-channel.json')
|
||||
.expectJSON({
|
||||
name: 'bithound',
|
||||
value: 'no longer available'
|
||||
});
|
||||
Reference in New Issue
Block a user