From d6f478488d068f76a064f4130a1604d3e65f8410 Mon Sep 17 00:00:00 2001 From: Tianyi Cui <53024+tianyicui@users.noreply.github.com> Date: Wed, 22 Jul 2026 18:40:24 +0800 Subject: [PATCH] test: allow deep worker checks under Windows coverage --- .../code-runtime/code-runtime-worker/tests/runtime.spec.ts | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/packages/code-runtime/code-runtime-worker/tests/runtime.spec.ts b/packages/code-runtime/code-runtime-worker/tests/runtime.spec.ts index bae0c3d4a6..ff630e51f1 100644 --- a/packages/code-runtime/code-runtime-worker/tests/runtime.spec.ts +++ b/packages/code-runtime/code-runtime-worker/tests/runtime.spec.ts @@ -92,7 +92,7 @@ describe('WorkerCodeRuntime — programs and bindings (real workers)', () => { cursor = Array.isArray(cursor) ? cursor[0] : undefined } expect(cursor).toBe('leaf') - }, 15_000) + }, 60_000) it('reports non-erasable syntax as an exception without spawning a worker', async () => { const { runtime } = await setup() @@ -500,7 +500,7 @@ describe('WorkerCodeRuntime — hostile programs (real workers)', () => { } expect(depth).toBe(3_000) expect(value).toBeNull() - }) + }, 60_000) it('turns forged over-limit error text into output-limit at the host', async () => { const { runtime } = await setup({ maxOutputBytes: 64 })