From b3dffcfcc6828f1ab1b538fc23abc25edbf19336 Mon Sep 17 00:00:00 2001 From: JPeer264 Date: Tue, 14 Apr 2026 14:10:32 +0100 Subject: [PATCH] test(cloudflare): Skip flaky durableobject-spans test The test is timing out intermittently in CI, causing spurious failures. Co-Authored-By: Claude Opus 4 Made-with: Cursor --- .../suites/tracing/durableobject-spans/test.ts | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/dev-packages/cloudflare-integration-tests/suites/tracing/durableobject-spans/test.ts b/dev-packages/cloudflare-integration-tests/suites/tracing/durableobject-spans/test.ts index 795eb03e27c2..1415950208cc 100644 --- a/dev-packages/cloudflare-integration-tests/suites/tracing/durableobject-spans/test.ts +++ b/dev-packages/cloudflare-integration-tests/suites/tracing/durableobject-spans/test.ts @@ -6,7 +6,8 @@ import { createRunner } from '../../../runner'; // must appear as children of the DO transaction. The first invocation always worked; // the second invocation on the same DO instance previously lost its child spans // because the client was disposed after the first call. -it('sends child spans on repeated Durable Object calls', async ({ signal }) => { +// TODO: unskip - this test is flaky, timing out in CI +it.skip('sends child spans on repeated Durable Object calls', async ({ signal }) => { function assertDoWorkEnvelope(envelope: unknown): void { const transactionEvent = (envelope as any)[1]?.[0]?.[1];