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.
This commit is contained in:
parent
7294377cd9
commit
17dc9e9917
@ -1853,6 +1853,12 @@ describe("Highlight Editor", () => {
|
||||
it("must check that an existing highlight is ignored on hovering", async () => {
|
||||
await Promise.all(
|
||||
pages.map(async ([browserName, page]) => {
|
||||
if (navigator.platform.includes("Win")) {
|
||||
// Skip the test on Windows because it permafails.
|
||||
// TODO: Remove this check once #20136 is fixed.
|
||||
return;
|
||||
}
|
||||
|
||||
await switchToHighlight(page);
|
||||
|
||||
const rect = await getSpanRectFromText(
|
||||
|
||||
Loading…
x
Reference in New Issue
Block a user