Merging this separately so the commit with the tooling change is readable. This is a follow-on to #1167 which turned prettier on.
14 lines
357 B
JavaScript
14 lines
357 B
JavaScript
'use strict'
|
|
|
|
const ServiceTester = require('../service-tester')
|
|
|
|
const t = new ServiceTester({ id: 'dotnetstatus', title: 'dotnet-status' })
|
|
module.exports = t
|
|
|
|
t.create('no longer available (previously get package status)')
|
|
.get('/gh/jaredcnance/dotnet-status/API.json')
|
|
.expectJSON({
|
|
name: 'dotnet status',
|
|
value: 'no longer available',
|
|
})
|