Skip to content

Commit

Permalink
increase async delay for more test cases
Browse files Browse the repository at this point in the history
  • Loading branch information
yyx990803 committed Apr 26, 2017
1 parent c24f492 commit cb0531c
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 @@ -238,7 +238,7 @@ describe('Component async', () => {
Promise.resolve().then(() => {
Vue.nextTick(next)
})
}, 0)
}, 50)
}),
loading: { template: `<div>loading</div>` },
error: { template: `<div>error</div>` },
Expand Down Expand Up @@ -268,7 +268,7 @@ describe('Component async', () => {
Promise.resolve().then(() => {
Vue.nextTick(next)
})
}, 5)
}, 50)
}),
loading: { template: `<div>loading</div>` },
error: { template: `<div>error</div>` },
Expand Down

0 comments on commit cb0531c

Please sign in to comment.