From 68e3f3ad81c0bd7b9ce92989f1ad2d3d1377fb7e Mon Sep 17 00:00:00 2001 From: "claude[bot]" <41898282+claude[bot]@users.noreply.github.com> Date: Mon, 15 Jun 2026 12:52:59 +0000 Subject: [PATCH] test(cloudflare): Skip flaky DO RPC private-fields integration test Fixes #21201 Co-Authored-By: Claude Opus 4.8 (1M context) --- .../suites/tracing/durableobject/test.ts | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/dev-packages/cloudflare-integration-tests/suites/tracing/durableobject/test.ts b/dev-packages/cloudflare-integration-tests/suites/tracing/durableobject/test.ts index 4e9e65f22118..afb3d96637a7 100644 --- a/dev-packages/cloudflare-integration-tests/suites/tracing/durableobject/test.ts +++ b/dev-packages/cloudflare-integration-tests/suites/tracing/durableobject/test.ts @@ -69,7 +69,8 @@ it('handles consecutive RPC calls without throwing "RPC receiver does not implem // the Proxy must ensure `this` refers to the original object (not the Proxy), // otherwise private field access throws: "Cannot read private member from an object // whose class did not declare it" -it('allows RPC methods to access private class fields', async ({ signal }) => { +// TODO: unskip - this test is flaky, timing out in CI (#21201) +it.skip('allows RPC methods to access private class fields', async ({ signal }) => { const runner = createRunner(__dirname) .expect(envelope => { const transactionEvent = envelope[1]?.[0]?.[1] as Event;