[vitest-pool-workers] Suppress outputGateBroken stderr noise when testing Workflows#13069
[vitest-pool-workers] Suppress outputGateBroken stderr noise when testing Workflows#13069
Conversation
🦋 Changeset detectedLatest commit: 972101b The changes in this PR will be included in the next version bump. Not sure what this means? Click here to learn what changesets are. Click here if you're a maintainer who wants to add another changeset to this PR |
|
File: Issue: Missing body in changeset description The changeset contains only a title line with no body: Per the README guidelines, the message format requires:
The description should explain:
The title alone is not sufficient. See the patch example in the README for reference:
Everything else looks fine:
|
|
LGTM |
create-cloudflare
@cloudflare/kv-asset-handler
miniflare
@cloudflare/pages-shared
@cloudflare/unenv-preset
@cloudflare/vite-plugin
@cloudflare/vitest-pool-workers
@cloudflare/workers-editor-shared
wrangler
commit: |
|
Codeowners approval required for this PR:
Show detailed file reviewers |
Fixes #12764.
When testing Cloudflare Workflows with
introspectWorkflowInstance, workerd emitsbroken.outputGateBroken; jsg.Error: Instance disposeto stderr during test teardown as the Durable Object backing the Workflow instance is disposed. This is normal workerd behaviour — the output gate is broken as part of DO cleanup — but it was being forwarded to the user's stderr, adding noise to test output and CI logs.The existing
ignoreMessagesfilter inhandleRuntimeStdioalready suppresses similar known-benign workerd messages. This PR adds"broken.outputGateBroken; jsg.Error: Instance dispose"to that list.