From fb4e0d849fd838d33dbd7f6385fcff679c9e7999 Mon Sep 17 00:00:00 2001 From: Moriz Wahl Date: Thu, 21 Oct 2021 02:22:45 +0200 Subject: [PATCH] fix test for router --- 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 8ec67373e..df4f9c229 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 twelve routes defined', () => { - expect(routes).toHaveLength(13) + it('has fourteen routes defined', () => { + expect(routes).toHaveLength(14) }) describe('overview', () => {