lint
This commit is contained in:
parent
b37b75c473
commit
eca1422ad0
2 changed files with 16 additions and 18 deletions
|
|
@ -37,10 +37,9 @@ describe('routes', () => {
|
|||
|
||||
const matchedComponents = router.currentRoute.value.matched
|
||||
|
||||
expect(
|
||||
matchedComponents[0].components.default.name,
|
||||
).to.eql('AsyncComponentWrapper')
|
||||
|
||||
expect(matchedComponents[0].components.default.name).to.eql(
|
||||
'AsyncComponentWrapper',
|
||||
)
|
||||
})
|
||||
|
||||
it("user's profile at /users", async () => {
|
||||
|
|
@ -48,9 +47,9 @@ describe('routes', () => {
|
|||
|
||||
const matchedComponents = router.currentRoute.value.matched
|
||||
|
||||
expect(
|
||||
matchedComponents[0].components.default.name,
|
||||
).to.eql('AsyncComponentWrapper')
|
||||
expect(matchedComponents[0].components.default.name).to.eql(
|
||||
'AsyncComponentWrapper',
|
||||
)
|
||||
})
|
||||
|
||||
it('list view', async () => {
|
||||
|
|
@ -58,9 +57,9 @@ describe('routes', () => {
|
|||
|
||||
const matchedComponents = router.currentRoute.value.matched
|
||||
|
||||
expect(
|
||||
matchedComponents[0].components.default.name,
|
||||
).to.eql('AsyncComponentWrapper')
|
||||
expect(matchedComponents[0].components.default.name).to.eql(
|
||||
'AsyncComponentWrapper',
|
||||
)
|
||||
})
|
||||
|
||||
it('list timeline', async () => {
|
||||
|
|
@ -68,9 +67,9 @@ describe('routes', () => {
|
|||
|
||||
const matchedComponents = router.currentRoute.value.matched
|
||||
|
||||
expect(
|
||||
matchedComponents[0].components.default.name,
|
||||
).to.eql('AsyncComponentWrapper')
|
||||
expect(matchedComponents[0].components.default.name).to.eql(
|
||||
'AsyncComponentWrapper',
|
||||
)
|
||||
})
|
||||
|
||||
it('list edit', async () => {
|
||||
|
|
@ -78,8 +77,8 @@ describe('routes', () => {
|
|||
|
||||
const matchedComponents = router.currentRoute.value.matched
|
||||
|
||||
expect(
|
||||
matchedComponents[0].components.default.name,
|
||||
).to.eql('AsyncComponentWrapper')
|
||||
expect(matchedComponents[0].components.default.name).to.eql(
|
||||
'AsyncComponentWrapper',
|
||||
)
|
||||
})
|
||||
})
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue