From 0ad7d2031364b2398d90b2598fb13a26dbd4f805 Mon Sep 17 00:00:00 2001 From: Paul Solecki <51918433+psoleckimoj@users.noreply.github.com> Date: Thu, 3 Aug 2023 15:11:46 +0100 Subject: [PATCH] Fix info endpoint test description (#214) --- server/routes/index.test.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/server/routes/index.test.ts b/server/routes/index.test.ts index 0d4585ffd..c7831d4a8 100644 --- a/server/routes/index.test.ts +++ b/server/routes/index.test.ts @@ -24,7 +24,7 @@ describe('GET /', () => { }) describe('GET /info', () => { - it('should render index page', () => { + it('should render info endpoint information', () => { return request(app) .get('/info') .expect('Content-Type', /application\/json/)