From 4b49d85d1aa387a10130984b49c2f3578673e7ce Mon Sep 17 00:00:00 2001 From: elweyn Date: Tue, 7 Dec 2021 10:44:24 +0100 Subject: [PATCH] Router got a new route test had to be fixed. --- frontend/src/routes/router.test.js | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/frontend/src/routes/router.test.js b/frontend/src/routes/router.test.js index 12c028fba..a85c7a291 100644 --- a/frontend/src/routes/router.test.js +++ b/frontend/src/routes/router.test.js @@ -49,8 +49,8 @@ describe('router', () => { expect(routes.find((r) => r.path === '/').redirect()).toEqual({ path: '/login' }) }) - it('has fifteen routes defined', () => { - expect(routes).toHaveLength(15) + it('has sixteen routes defined', () => { + expect(routes).toHaveLength(16) }) describe('overview', () => {