Skip to content

Commit a7beb87

Browse files
committed
chore: Adjust timeout for iOS
1 parent 6560244 commit a7beb87

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

src/Uno.UI.RuntimeTests/Tests/Windows_UI_Xaml_Controls/Given_WebView2.cs

+2-2
Original file line numberDiff line numberDiff line change
@@ -29,7 +29,7 @@ public async Task When_InvokeScriptAsync()
2929
await TestServices.WindowHelper.WaitForLoaded(border);
3030
webView.NavigationCompleted += (sender, e) => navigated = true;
3131
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);
3333

3434
var sw = Stopwatch.StartNew();
3535
string color = null;
@@ -49,7 +49,7 @@ public async Task When_InvokeScriptAsync()
4949
})()
5050
""");
5151

52-
} while (sw.Elapsed < TimeSpan.FromSeconds(5) && string.IsNullOrEmpty(color.Replace("\"", "")));
52+
} while (sw.Elapsed < TimeSpan.FromSeconds(10) && string.IsNullOrEmpty(color.Replace("\"", "")));
5353

5454
Assert.AreEqual("\"blue\"", color);
5555

0 commit comments

Comments
 (0)