* WIP * Rewrite [codeclimate] analysis Ref #2683 * Tweak names * chore: tweak redirector category
17 lines
455 B
JavaScript
17 lines
455 B
JavaScript
'use strict'
|
|
|
|
const { ServiceTester } = require('../tester')
|
|
|
|
const t = (module.exports = new ServiceTester({
|
|
id: 'CodeclimateCoverageRedirector',
|
|
title: 'Code Climate Coverage Redirector',
|
|
pathPrefix: '/codeclimate',
|
|
}))
|
|
|
|
t.create('Maintainability letter alias')
|
|
.get('/maintainability-letter/jekyll/jekyll.svg', {
|
|
followRedirect: false,
|
|
})
|
|
.expectStatus(301)
|
|
.expectHeader('Location', '/codeclimate/maintainability/jekyll/jekyll.svg')
|