You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
[Win32] Correct WebView environment initialization in Edge browser tests
The browser tests contain a setup method that, on Windows, creates an
Edge browser before any test is executed in order to set up the WebView
environment. Since the first Edge browser instantiation takes rather
long at least in the GitHub actions test environment, the initialization
is extended to wait for the browser being initialized.
Copy file name to clipboardExpand all lines: tests/org.eclipse.swt.tests/JUnit Tests/org/eclipse/swt/tests/junit/Test_org_eclipse_swt_browser_Browser.java
+6-2
Original file line number
Diff line number
Diff line change
@@ -165,11 +165,15 @@ public Test_org_eclipse_swt_browser_Browser(int swtBrowserSettings) {
165
165
166
166
@BeforeClass
167
167
publicstaticvoidsetupEdgeEnvironment() {
168
-
// initialize Edge environment before any test runs to isolate environment setup
168
+
// Initialize Edge environment before any test runs to isolate environment setup
169
+
// as this takes quite long in GitHub Actions builds
0 commit comments