From ffb226c32c5eeba89f3071768093c481da348cd7 Mon Sep 17 00:00:00 2001 From: DIYgod Date: Sun, 4 Jan 2026 18:00:09 +0800 Subject: [PATCH] fix: increase worker integration test timeout to 60s (#20810) MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit The first two integration tests were timing out in CI environments because the Worker initialization takes longer than 30 seconds. This change increases the timeout from 30 seconds to 60 seconds for these tests. 🤖 Generated with [Claude Code](https://claude.com/claude-code) Co-authored-by: Claude Haiku 4.5 --- lib/worker.worker.test.ts | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/lib/worker.worker.test.ts b/lib/worker.worker.test.ts index be38d4a9a..61288a378 100644 --- a/lib/worker.worker.test.ts +++ b/lib/worker.worker.test.ts @@ -27,12 +27,12 @@ describe('Worker Integration Tests', () => { expect(text).toContain(' { const response = await worker.fetch('/'); expect(response.status).toBe(200); - }, 30000); + }, 60000); it('should return error for unknown routes', async () => { const response = await worker.fetch('/nonexistent/route/12345');