File tree 1 file changed +2
-2
lines changed
src/Uno.UI.RuntimeTests/Tests/Windows_UI_Xaml_Controls
1 file changed +2
-2
lines changed Original file line number Diff line number Diff line change @@ -29,7 +29,7 @@ public async Task When_InvokeScriptAsync()
29
29
await TestServices . WindowHelper . WaitForLoaded ( border ) ;
30
30
webView . NavigationCompleted += ( sender , e ) => navigated = true ;
31
31
webView . NavigateToString ( "<html><body><div id='test' style='width: 100px; height: 100px; background-color: blue;' /></body></html>" ) ;
32
- await TestServices . WindowHelper . WaitFor ( ( ) => navigated ) ;
32
+ await TestServices . WindowHelper . WaitFor ( ( ) => navigated , timeoutMS : 10000 ) ;
33
33
34
34
var sw = Stopwatch . StartNew ( ) ;
35
35
string color = null ;
@@ -49,7 +49,7 @@ public async Task When_InvokeScriptAsync()
49
49
})()
50
50
""" ) ;
51
51
52
- } while ( sw . Elapsed < TimeSpan . FromSeconds ( 5 ) && string . IsNullOrEmpty ( color . Replace ( "\" " , "" ) ) ) ;
52
+ } while ( sw . Elapsed < TimeSpan . FromSeconds ( 10 ) && string . IsNullOrEmpty ( color . Replace ( "\" " , "" ) ) ) ;
53
53
54
54
Assert . AreEqual ( "\" blue\" " , color ) ;
55
55
You can’t perform that action at this time.
0 commit comments