aboutsummaryrefslogtreecommitdiff
path: root/test/unit/specs/boot
diff options
context:
space:
mode:
authorMaxim Filippov <colixer@gmail.com>2018-12-17 01:53:21 +0300
committerMaxim Filippov <colixer@gmail.com>2018-12-17 01:53:21 +0300
commitb524e73a6566ca4a6cfd9331457d2cb2958b3214 (patch)
treecafc60cc8b8981f347fc32d2c409591798ab5d2e /test/unit/specs/boot
parent828b1c78f9304d400a206a25f4f43999bc5908bc (diff)
Add local profile test
Diffstat (limited to 'test/unit/specs/boot')
-rw-r--r--test/unit/specs/boot/routes.spec.js3
1 files changed, 1 insertions, 2 deletions
diff --git a/test/unit/specs/boot/routes.spec.js b/test/unit/specs/boot/routes.spec.js
index 638b1860..9963555f 100644
--- a/test/unit/specs/boot/routes.spec.js
+++ b/test/unit/specs/boot/routes.spec.js
@@ -24,7 +24,6 @@ describe('routes', () => {
const matchedComponents = router.getMatchedComponents()
- console.log(matchedComponents[0].components.UserCardContent)
- expect(matchedComponents[0].components.hasOwnProperty('UserProfile')).to.eql(true)
+ expect(matchedComponents[0].components.hasOwnProperty('UserCardContent')).to.eql(true)
})
})