`expect(...).toBe(...)` などのタイムアウト上限を設定する方法。`playwright.config.ts` の `expect.timeout` を指定する。 ```ts export default defineConfig({ expect: { timeout: 15 * 1000, }, } ``` ## MOC - 📒**関連** - [[アクションに対するタイムアウト時間を変更 (Playwright)|アクションに対するタイムアウト時間を変更]] - 📜**アクティビティ** - 📝**トラブルシューティング**