15 lines
311 B
JavaScript
15 lines
311 B
JavaScript
import { ServiceTester } from '../tester.js'
|
|
|
|
export const t = new ServiceTester({
|
|
id: 'Codetally',
|
|
title: 'Codetally',
|
|
pathPrefix: '/codetally',
|
|
})
|
|
|
|
t.create('no longer available')
|
|
.get('/triggerman722/colorstrap.json')
|
|
.expectBadge({
|
|
label: 'codetally',
|
|
message: 'no longer available',
|
|
})
|