Skip to content

Commit 7c69c40

Browse files
committed
disable ie test run because the test page runs in an endless loop (even in real ie)
1 parent cef7b7e commit 7c69c40

2 files changed

Lines changed: 14 additions & 8 deletions

File tree

src/test/java/org/htmlunit/libraries/HtmxTest1x9x6.java

Lines changed: 5 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -38,9 +38,12 @@ public class HtmxTest1x9x6 extends HtmxTest {
3838
IE = "not testable")
3939
@HtmlUnitNYI(
4040
CHROME = "passes:634failures:0",
41-
EDGE = "passes:634failures:0",
42-
IE = "passes:482failures:35")
41+
EDGE = "passes:634failures:0")
4342
public void htmx() throws Exception {
43+
// the test page runs in an endless loop in ie
44+
if (getBrowserVersion().isIE()) {
45+
return;
46+
}
4447
htmx("htmx-1.9.6");
4548
}
4649
}

src/test/java/org/htmlunit/libraries/HtmxTest1x9x7.java

Lines changed: 9 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -32,15 +32,18 @@ public class HtmxTest1x9x7 extends HtmxTest {
3232
* @throws Exception if an error occurs
3333
*/
3434
@Test
35-
@Alerts(DEFAULT = "passes:584failures:1",
36-
FF = "passes:584failures:0",
37-
FF_ESR = "passes:584failures:0",
35+
@Alerts(DEFAULT = "passes:653failures:1",
36+
FF = "passes:653failures:0",
37+
FF_ESR = "passes:653failures:0",
3838
IE = "not testable")
3939
@HtmlUnitNYI(
40-
CHROME = "passes:584failures:0",
41-
EDGE = "passes:584failures:0",
42-
IE = "passes:437failures:15")
40+
CHROME = "passes:653failures:0",
41+
EDGE = "passes:653failures:0")
4342
public void htmx() throws Exception {
43+
// the test page runs in an endless loop in ie
44+
if (getBrowserVersion().isIE()) {
45+
return;
46+
}
4447
htmx("htmx-1.9.7");
4548
}
4649
}

0 commit comments

Comments
 (0)