Skip to content

Commit

Permalink
test: Remove _routes test
Browse files Browse the repository at this point in the history
  • Loading branch information
benjamincanac committed Feb 24, 2018
1 parent 51a8f58 commit 2344247
Showing 1 changed file with 0 additions and 7 deletions.
7 changes: 0 additions & 7 deletions test/simple.test.js
Original file line number Diff line number Diff line change
Expand Up @@ -47,13 +47,6 @@ test('GET /_ping => pong', async (t) => {
t.true(stdout[0].includes('GET /_ping'))
})

test('GET /_routes => 200 with routes', async (t) => {
const { statusCode, body } = await $get('/_routes')
t.is(statusCode, 200)
t.true(Array.isArray(body))
t.true(body.length > 0)
})

test('GET /404 => 404 status code', async (t) => {
const { statusCode, body } = await $get('/404')
t.is(statusCode, 404)
Expand Down

0 comments on commit 2344247

Please sign in to comment.