From e576f8cdad03b53fb4e8669ea814c5b51990b4c5 Mon Sep 17 00:00:00 2001 From: Maxim Filippov Date: Thu, 6 Dec 2018 21:03:52 +0300 Subject: [PATCH] Typo in tests --- test/unit/specs/boot/routes.spec.js | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/test/unit/specs/boot/routes.spec.js b/test/unit/specs/boot/routes.spec.js index 9715b53a..dedee36b 100644 --- a/test/unit/specs/boot/routes.spec.js +++ b/test/unit/specs/boot/routes.spec.js @@ -14,16 +14,16 @@ describe('routes', () => { it('root path', () => { router.push('/p/main/all') - const mathcedComponents = router.getMatchedComponents() + const matchedComponents = router.getMatchedComponents() - expect(mathcedComponents[0].components.hasOwnProperty('Timeline')) + expect(matchedComponents[0].components.hasOwnProperty('Timeline')) }) it('user\'s profile', () => { router.push('/fake-user-name') - const mathcedComponents = router.getMatchedComponents() + const matchedComponents = router.getMatchedComponents() - expect(mathcedComponents[0].components.hasOwnProperty('UserProfile')) + expect(matchedComponents[0].components.hasOwnProperty('UserProfile')) }) })