From c6b7d448125843819e5cadea12ba9aa46d460443 Mon Sep 17 00:00:00 2001 From: syuilo <4439005+syuilo@users.noreply.github.com> Date: Thu, 9 Jul 2026 11:18:22 +0900 Subject: [PATCH] Update chrome.mts --- .github/scripts/chrome.mts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/scripts/chrome.mts b/.github/scripts/chrome.mts index b2bc3a55c5..29647723a2 100644 --- a/.github/scripts/chrome.mts +++ b/.github/scripts/chrome.mts @@ -455,7 +455,7 @@ export class PlaywrightBrowser { public waitApiResponse(path: string) { return this.page.waitForResponse((response) => { return response.url().endsWith(path) && response.request().method() === 'POST'; - }, { timeout: this.page.defaultTimeout() }); + }); } public async close() {