* Added badge for Maven-Cenral last update. * Update services/maven-central/maven-central-last-update.service.js Co-authored-by: chris48s <chris48s@users.noreply.github.com> * updated according to the review comments. --------- Co-authored-by: chris48s <chris48s@users.noreply.github.com>
16 lines
471 B
JavaScript
16 lines
471 B
JavaScript
import { isFormattedDate } from '../test-validators.js'
|
|
import { createServiceTester } from '../tester.js'
|
|
export const t = await createServiceTester()
|
|
|
|
t.create('last update date').get('/com.google.guava/guava.json').expectBadge({
|
|
label: 'last updated',
|
|
message: isFormattedDate,
|
|
})
|
|
|
|
t.create('last update when artifact not found')
|
|
.get('/com.fail.test/this-does-not-exist.json')
|
|
.expectBadge({
|
|
label: 'last updated',
|
|
message: 'artifact not found',
|
|
})
|