Deprecate [magnumci bithound] (#1770)

* deprecate Magnum CI badge

* deprecate BitHound badges
This commit is contained in:
chris48s
2018-07-12 04:30:52 +01:00
committed by Paul Melnikow
parent c76090ac7f
commit 7de10783fa
5 changed files with 51 additions and 87 deletions

View 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'
});