From bb293c4b194e0cec523790264ff7829a6c21dac0 Mon Sep 17 00:00:00 2001 From: Ulf Gebhardt Date: Thu, 7 Oct 2021 09:46:47 +0200 Subject: [PATCH] fixed router test --- 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 57fca142b..8b6fbf3b9 100644 --- a/frontend/src/routes/router.test.js +++ b/frontend/src/routes/router.test.js @@ -55,8 +55,8 @@ describe('router', () => { expect(routes.find((r) => r.path === '/').redirect()).toEqual({ path: '/login' }) }) - it('has ten routes defined', () => { - expect(routes).toHaveLength(10) + it('has twelve routes defined', () => { + expect(routes).toHaveLength(12) }) describe('overview', () => {