From a6df405f3ea21fde42dae68b0b78a31a4cf4b76e Mon Sep 17 00:00:00 2001 From: zhaowl94 <18801352315@163.com> Date: Fri, 31 Jul 2026 11:35:19 +0800 Subject: [PATCH] test: allow cold Windows Axe scans to finish --- test/e2e/accessibility.spec.mjs | 3 +++ 1 file changed, 3 insertions(+) diff --git a/test/e2e/accessibility.spec.mjs b/test/e2e/accessibility.spec.mjs index 1021d69..eaf458a 100644 --- a/test/e2e/accessibility.spec.mjs +++ b/test/e2e/accessibility.spec.mjs @@ -1,6 +1,9 @@ import AxeBuilder from "@axe-core/playwright"; import { expect, test } from "@playwright/test"; +// Axe can exceed the default timeout during a cold Firefox start on Windows CI. +test.describe.configure({ timeout: 60_000 }); + const pages = [ "/index.html", "/Html5-Final-Project.html",