From 01a791ef95d9ec4ba376cfff8675b698a29dd3a3 Mon Sep 17 00:00:00 2001 From: Eduardo San Martin Morote Date: Mon, 28 Feb 2022 14:29:28 +0100 Subject: [PATCH] test: typo --- __tests__/initialNavigation.spec.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/__tests__/initialNavigation.spec.ts b/__tests__/initialNavigation.spec.ts index 9625e365b..04ee5cbaa 100644 --- a/__tests__/initialNavigation.spec.ts +++ b/__tests__/initialNavigation.spec.ts @@ -61,7 +61,7 @@ describe('Initial Navigation', () => { expect(router.currentRoute.value).toMatchObject({ path: '/' }) }) - it('handles initial navigation with beforEnter', async () => { + it('handles initial navigation with beforeEnter', async () => { const { history, router } = newRouter('/home-before') expect(history.location).toBe('/home-before') // this is done automatically on mount but there is no mount here