aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--test/unit/specs/boot/routes.spec.js8
1 files 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'))
})
})