Skip to content

Commit 17dc9e9

Browse files
committed
Skip the "must check that an existing highlight is ignored on hovering" integration test on Windows
This is a temporary measure to reduce noise until #20136 is fixed. Note that this shouldn't be an issue in terms of coverage because we still run the test on Linux.
1 parent 7294377 commit 17dc9e9

1 file changed

Lines changed: 6 additions & 0 deletions

File tree

test/integration/highlight_editor_spec.mjs

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1853,6 +1853,12 @@ describe("Highlight Editor", () => {
18531853
it("must check that an existing highlight is ignored on hovering", async () => {
18541854
await Promise.all(
18551855
pages.map(async ([browserName, page]) => {
1856+
if (navigator.platform.includes("Win")) {
1857+
// Skip the test on Windows because it permafails.
1858+
// TODO: Remove this check once #20136 is fixed.
1859+
return;
1860+
}
1861+
18561862
await switchToHighlight(page);
18571863

18581864
const rect = await getSpanRectFromText(

0 commit comments

Comments
 (0)