tweak timeout in some api/router tests
This commit is contained in:
parent
78963071bb
commit
cffe77b2c2
1 changed files with 5 additions and 5 deletions
|
|
@ -554,9 +554,9 @@ o.spec("route", function() {
|
||||||
done()
|
done()
|
||||||
}, FRAME_BUDGET)
|
}, FRAME_BUDGET)
|
||||||
})
|
})
|
||||||
|
|
||||||
o("routing with RouteResolver works more than once (#1286)", function(done, timeout){
|
o("routing with RouteResolver works more than once", function(done, timeout) {
|
||||||
timeout(FRAME_BUDGET * 3)
|
timeout(100)
|
||||||
|
|
||||||
$window.location.href = prefix + "/a"
|
$window.location.href = prefix + "/a"
|
||||||
route(root, '/a', {
|
route(root, '/a', {
|
||||||
|
|
@ -584,9 +584,9 @@ o.spec("route", function() {
|
||||||
}, FRAME_BUDGET)
|
}, FRAME_BUDGET)
|
||||||
}, FRAME_BUDGET)
|
}, FRAME_BUDGET)
|
||||||
})
|
})
|
||||||
|
|
||||||
o("calling route.set invalidates pending onmatch resolution", function(done, timeout) {
|
o("calling route.set invalidates pending onmatch resolution", function(done, timeout) {
|
||||||
timeout(50)
|
timeout(100)
|
||||||
|
|
||||||
var resolved
|
var resolved
|
||||||
$window.location.href = prefix + "/a"
|
$window.location.href = prefix + "/a"
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue