Merging this separately so the commit with the tooling change is readable. This is a follow-on to #1167 which turned prettier on.
15 lines
356 B
JavaScript
15 lines
356 B
JavaScript
'use strict'
|
|
|
|
const ServiceTester = require('../service-tester')
|
|
|
|
const t = new ServiceTester({ id: 'cauditor', title: 'Cauditor' })
|
|
module.exports = t
|
|
|
|
t.create('no longer available')
|
|
.get('/mi/matthiasmullie/scrapbook/master.json?style=_shields_test')
|
|
.expectJSON({
|
|
name: 'cauditor',
|
|
value: 'no longer available',
|
|
colorB: '#9f9f9f',
|
|
})
|