Skip to content

Commit

Permalink
increase async component test delay
Browse files Browse the repository at this point in the history
  • Loading branch information
yyx990803 committed Apr 26, 2017
1 parent 12b7122 commit 1096890
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions test/unit/features/component/component-async.spec.js
Expand Up @@ -173,7 +173,7 @@ describe('Component async', () => {
Promise.resolve().then(() => {
Vue.nextTick(next)
})
}, 5)
}, 50)
}),
loading: { template: `<div>loading</div>` },
delay: 1
Expand Down Expand Up @@ -210,7 +210,7 @@ describe('Component async', () => {
Promise.resolve().then(() => {
Vue.nextTick(next)
})
}, 0)
}, 50)
}),
loading: { template: `<div>loading</div>` },
delay: 0
Expand Down

0 comments on commit 1096890

Please sign in to comment.