tests: remove service tests for dropped static png routes (#3712)

This commit is contained in:
Caleb Cartwright
2019-07-13 11:40:17 -05:00
committed by Pierre-Yves B
parent 39d47a10b4
commit bd8b1ead59

View File

@@ -57,13 +57,3 @@ t.create('Override color with a number')
t.create('Override label')
.get('/badge/label-message-blue.json?label=mylabel')
.expectBadge({ label: 'mylabel', message: 'message', color: 'blue' })
t.create('Old static badge')
.get('/foo/bar.png?color=blue', { followRedirect: false })
.expectStatus(301)
.expectHeader('Location', '/badge/foo-bar-blue.png')
t.create('Old static badge without a color')
.get('/foo/bar.png', { followRedirect: false })
.expectStatus(301)
.expectHeader('Location', '/badge/foo-bar-lightgray.png')