[backport] Bump vite + enable step source-map assertions for vite local dev - #1919

Merged
TooTallNate merged 2 commits into
stablefrom
nate/backport-vite-step-source-maps-stable
May 4, 2026
Merged

[backport] Bump vite + enable step source-map assertions for vite local dev#1919
TooTallNate merged 2 commits into
stablefrom
nate/backport-vite-step-source-maps-stable

Conversation

@TooTallNate

Copy link
Copy Markdown
Member

The E2E Local Dev Tests (vite - stable) job has been consistently failing on stable with two assertion failures:

FAIL packages/core/e2e/e2e.test.ts > error handling > error propagation > step errors
> basic step error preserves message and stack trace
AssertionError: expected '...' not to contain '99_e2e.ts'
FAIL packages/core/e2e/e2e.test.ts > error handling > error propagation > step errors
> cross-file step error preserves message and function names in stack
AssertionError: expected '...' not to contain 'helpers.ts'

Example: https://github.com/vercel/workflow/actions/runs/25334881746/job/74277642761

The tests assert that vite local-dev stack traces should NOT contain user source paths (because hasStepSourceMaps() returns false for vite). But the SDK's actual output DOES contain those paths — vite ^7.3.x preserves step bundle source maps in dev mode.

Already fixed on main in #1827 + #1862. This PR cherry-picks both to stable.

Cherry-picked commits

  1. [workflow] Bump Vite #1827Bump vite

    • workbench/vite/package.json: ^7.1.12^7.3.2
    • workbench/sveltekit/package.json: ^7.1.7^7.3.2
    • pnpm-lock.yaml: regenerated to resolve a conflict with stable's diverged lockfile (re-ran pnpm install --no-frozen-lockfile after applying the package.json changes).
  2. test: enable step source-map assertions for vite local dev #1862test: enable step source-map assertions for vite local dev

    • packages/core/e2e/utils.ts: drop the vite-specific carve-out in hasStepSourceMaps(). Vite local-dev now falls through to the default behavior (returns true when DEV_TEST_CONFIG is set).
    • Empty changeset (test-only change).

Verification

  • pnpm install --frozen-lockfile ✅ passes after the cherry-pick.
  • The hasStepSourceMaps() fall-through for vite local-dev now matches what the SDK actually produces: source maps ARE preserved, so the test correctly asserts expect(stack).toContain('99_e2e.ts').

karthikscale3and others added 2 commits May 4, 2026 11:16
* test: enable step source-map assertions for vite local dev
Vite ^7.3.2 (bumped in #1827) preserves step bundle source maps in
dev mode, so stack traces now contain original file paths. Update
hasStepSourceMaps() so vite returns true in local dev and stays false
only in local prod, fixing the consistently failing 'basic step error'
and 'cross-file step error' e2e tests.
* chore: drop body from empty changeset
* address review: drop redundant vite local-prod guard
The default `!DEV_TEST_CONFIG` fall-through already returns false for
vite local prod, so the vite-specific guard is dead code. Just remove
the vite block entirely now that vite local dev matches the default
'has source maps' behavior.
CopilotAI review requested due to automatic review settings May 4, 2026 18:17
@changeset-bot

Copy link
Copy Markdown

🦋 Changeset detected

Latest commit: 6a0e4e4

The changes in this PR will be included in the next version bump.

This PR includes changesets to release 0 packages

When changesets are added to this PR, you'll see the packages that this PR includes changesets for and the associated semver types

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

@github-actions

github-actionsBot commented May 4, 2026

Copy link
Copy Markdown
Contributor

🧪 E2E Test Results

Some tests failed

Summary

PassedFailedSkippedTotal
✅ ▲ Vercel Production901067968
❌ 💻 Local Development724246861056
✅ 📦 Local Production9700861056
✅ 🐘 Local Postgres9700861056
✅ 🪟 Windows880088
❌ 🌍 Community Worlds139830222
✅ 📋 Other246018264
Total40383293434710

❌ Failed Tests

💻 Local Development (246 failed)

express-stable (82 failed):

  • DurableAgent e2e core basic text response
  • DurableAgent e2e core single tool call
  • DurableAgent e2e core multiple sequential tool calls
  • DurableAgent e2e core tool error recovery
  • DurableAgent e2e provider tools provider tool identity preserved across step boundaries
  • DurableAgent e2e provider tools mixed provider and function tools
  • DurableAgent e2e onStepFinish fires constructor + stream callbacks in order with step data
  • DurableAgent e2e onFinish fires constructor + stream callbacks in order with event data
  • DurableAgent e2e instructions string instructions are passed to the model
  • DurableAgent e2e timeout completes within timeout
  • DurableAgent e2e experimental_onStart (GAP) completes but callbacks are not called (GAP)
  • DurableAgent e2e experimental_onStepStart (GAP) completes but callbacks are not called (GAP)
  • DurableAgent e2e experimental_onToolCallStart (GAP) completes but callbacks are not called (GAP)
  • DurableAgent e2e experimental_onToolCallFinish (GAP) completes but callbacks are not called (GAP)
  • DurableAgent e2e prepareCall (GAP) completes but prepareCall is not applied (GAP)
  • DurableAgent e2e prepareStep on constructor agent-level prepareStep is called for each LLM step
  • DurableAgent e2e prepareStep on constructor stream-level prepareStep overrides constructor-level
  • DurableAgent e2e multimodal tool results passes through LanguageModelV3ToolResultOutput from tools
  • DurableAgent e2e tool approval (GAP) completes but needsApproval is not checked (GAP)
  • addTenWorkflow | wrun_01KQT3FBFBVG12VAXSNYCD38D5
  • addTenWorkflow | wrun_01KQT3FBFBVG12VAXSNYCD38D5
  • promiseAllWorkflow | wrun_01KQT3FHW2WGJBGAMNDZSXMJGE
  • promiseRaceWorkflow | wrun_01KQT3FP8BASQ5466XKXCXSTAM
  • promiseAnyWorkflow | wrun_01KQT3FR7249NC090DYN5XGT3F
  • readableStreamWorkflow | wrun_01KQT3FTE4CC3V49YCXA40KTZK
  • hookWorkflow | wrun_01KQT3G46PDRTMWS6DEG3JTMDB
  • hookWorkflow is not resumable via public webhook endpoint | wrun_01KQT3GF0TYAY99R4R8SAZSFC9
  • webhookWorkflow | wrun_01KQT3GQVESB1RERT68G05X0S0
  • webhook route with invalid token
  • sleepingWorkflow | wrun_01KQT3GZ48VM8PWXBJK9D4XJJ4
  • parallelSleepWorkflow | wrun_01KQT3HBQ529R1GR7G485QDCGA
  • nullByteWorkflow | wrun_01KQT3HFZ73PGND2GCC3M8M8JJ
  • workflowAndStepMetadataWorkflow | wrun_01KQT3HJ4DEZ9GWHKB4EGTHRH3
  • outputStreamWorkflow no startIndex (reads all chunks)
  • outputStreamWorkflow positive startIndex (skips first chunk)
  • outputStreamWorkflow negative startIndex (reads from end)
  • outputStreamWorkflow - getTailIndex and getStreamChunks getTailIndex returns correct index after stream completes
  • outputStreamWorkflow - getTailIndex and getStreamChunks getTailIndex returns -1 before any chunks are written
  • outputStreamWorkflow - getTailIndex and getStreamChunks getStreamChunks returns same content as reading the stream
  • outputStreamInsideStepWorkflow - getWritable() called inside step functions | wrun_01KQT3KY6TBX4RA7EKRM50CN3V
  • fetchWorkflow | wrun_01KQT3MBM4E4AREH2VEK828ZWX
  • promiseRaceStressTestWorkflow | wrun_01KQT3MEQRJ20E9W676GDHT1EF
  • error handling error propagation workflow errors nested function calls preserve message and stack trace
  • error handling error propagation workflow errors cross-file imports preserve message and stack trace
  • error handling error propagation step errors basic step error preserves message and stack trace
  • error handling error propagation step errors cross-file step error preserves message and function names in stack
  • error handling retry behavior regular Error retries until success
  • error handling retry behavior FatalError fails immediately without retries
  • error handling retry behavior RetryableError respects custom retryAfter delay
  • error handling retry behavior maxRetries=0 disables retries
  • error handling catchability FatalError can be caught and detected with FatalError.is()
  • error handling not registered WorkflowNotRegisteredError fails the run when workflow does not exist
  • error handling not registered StepNotRegisteredError fails the step but workflow can catch it
  • error handling not registered StepNotRegisteredError fails the run when not caught in workflow
  • stepDirectCallWorkflow - calling step functions directly outside workflow context
  • hookCleanupTestWorkflow - hook token reuse after workflow completion | wrun_01KQT3QT3GBM426YTQR012P8FP
  • concurrent hook token conflict - two workflows cannot use the same hook token simultaneously | wrun_01KQT3RDQ86BRAJ3F06ZCCEEYK
  • hookDisposeTestWorkflow - hook token reuse after explicit disposal while workflow still running | wrun_01KQT3S23PY8CM8584GRTZJGCR
  • stepFunctionPassingWorkflow - step function references can be passed as arguments (without closure vars) | wrun_01KQT3SN09P9BEP3470YYQZG22
  • stepFunctionWithClosureWorkflow - step function with closure variables passed as argument | wrun_01KQT3SXGQZFEG4SG7JT60BBDR
  • closureVariableWorkflow - nested step functions with closure variables | wrun_01KQT3T2GF5BJWTADVNH3RJN5F
  • spawnWorkflowFromStepWorkflow - spawning a child workflow using start() inside a step | wrun_01KQT3T4M25ZRNS3V4JNJ79C58
  • health check endpoint (HTTP) - workflow and step endpoints respond to __health query parameter
  • health check (queue-based) - workflow and step endpoints respond to health check messages
  • health check (CLI) - workflow health command reports healthy endpoints
  • pathsAliasWorkflow - TypeScript path aliases resolve correctly | wrun_01KQT3TKEC09ZJVHCJ4R3WFB2Q
  • Calculator.calculate - static workflow method using static step methods from another class | wrun_01KQT3TRGQNKQNQ5021Q40K85P
  • AllInOneService.processNumber - static workflow method using sibling static step methods | wrun_01KQT3TYNT6X1F8BH58CN0FME7
  • ChainableService.processWithThis - static step methods using this to reference the class | wrun_01KQT3V4YTM7F1T1T3F7CFMY12
  • thisSerializationWorkflow - step function invoked with .call() and .apply() | wrun_01KQT3VB42HXBX7YB1VQ256ER7
  • customSerializationWorkflow - custom class serialization with WORKFLOW_SERIALIZE/WORKFLOW_DESERIALIZE | wrun_01KQT3VHRKFGBFY0X8TYQC9RXB
  • instanceMethodStepWorkflow - instance methods with "use step" directive | wrun_01KQT3VS2V39G0R2W5K8ZBHRM7
  • crossContextSerdeWorkflow - classes defined in step code are deserializable in workflow context | wrun_01KQT3W3MNYXQRVMHC5A95END0
  • stepFunctionAsStartArgWorkflow - step function reference passed as start() argument | wrun_01KQT3WCK45WS5A71RX9NH7KRG
  • cancelRun - cancelling a running workflow | wrun_01KQT3WKWB5DHTECCJQMNGQV0G
  • cancelRun via CLI - cancelling a running workflow | wrun_01KQT3WWMGF0CN6T8VJEZ6C0NA
  • hookWithSleepWorkflow - hook payloads delivered correctly with concurrent sleep | wrun_01KQT3X80RE08SHRQNN3Y86QY0
  • sleepInLoopWorkflow - sleep inside loop with steps actually delays each iteration | wrun_01KQT3XVB6J6ZFX9NFVXDP6A4F
  • sleepWithSequentialStepsWorkflow - sequential steps work with concurrent sleep (control) | wrun_01KQT3Y6JYGFDQRJSK98TN73QN
  • importMetaUrlWorkflow - import.meta.url is available in step bundles | wrun_01KQT3YCQE5MRPVG85KMESEHN4
  • metadataFromHelperWorkflow - getWorkflowMetadata/getStepMetadata work from module-level helper (#1577) | wrun_01KQT3YESA6HHWR8J7N0F2KFG8
  • resilient start: addTenWorkflow completes when run_created returns 500 | wrun_01KQT3YGR7DQ4CWPZ7PXG8VGEK

fastify-stable (82 failed):

  • DurableAgent e2e core basic text response
  • DurableAgent e2e core single tool call
  • DurableAgent e2e core multiple sequential tool calls
  • DurableAgent e2e core tool error recovery
  • DurableAgent e2e provider tools provider tool identity preserved across step boundaries
  • DurableAgent e2e provider tools mixed provider and function tools
  • DurableAgent e2e onStepFinish fires constructor + stream callbacks in order with step data
  • DurableAgent e2e onFinish fires constructor + stream callbacks in order with event data
  • DurableAgent e2e instructions string instructions are passed to the model
  • DurableAgent e2e timeout completes within timeout
  • DurableAgent e2e experimental_onStart (GAP) completes but callbacks are not called (GAP)
  • DurableAgent e2e experimental_onStepStart (GAP) completes but callbacks are not called (GAP)
  • DurableAgent e2e experimental_onToolCallStart (GAP) completes but callbacks are not called (GAP)
  • DurableAgent e2e experimental_onToolCallFinish (GAP) completes but callbacks are not called (GAP)
  • DurableAgent e2e prepareCall (GAP) completes but prepareCall is not applied (GAP)
  • DurableAgent e2e prepareStep on constructor agent-level prepareStep is called for each LLM step
  • DurableAgent e2e prepareStep on constructor stream-level prepareStep overrides constructor-level
  • DurableAgent e2e multimodal tool results passes through LanguageModelV3ToolResultOutput from tools
  • DurableAgent e2e tool approval (GAP) completes but needsApproval is not checked (GAP)
  • addTenWorkflow | wrun_01KQT3FBFBVG12VAXSNYCD38D5
  • addTenWorkflow | wrun_01KQT3FBFBVG12VAXSNYCD38D5
  • promiseAllWorkflow | wrun_01KQT3FHW2WGJBGAMNDZSXMJGE
  • promiseRaceWorkflow | wrun_01KQT3FP8BASQ5466XKXCXSTAM
  • promiseAnyWorkflow | wrun_01KQT3FR7249NC090DYN5XGT3F
  • readableStreamWorkflow | wrun_01KQT3FTE4CC3V49YCXA40KTZK
  • hookWorkflow | wrun_01KQT3G46PDRTMWS6DEG3JTMDB
  • hookWorkflow is not resumable via public webhook endpoint | wrun_01KQT3GF0TYAY99R4R8SAZSFC9
  • webhookWorkflow | wrun_01KQT3GQVESB1RERT68G05X0S0
  • webhook route with invalid token
  • sleepingWorkflow | wrun_01KQT3GZ48VM8PWXBJK9D4XJJ4
  • parallelSleepWorkflow | wrun_01KQT3HBQ529R1GR7G485QDCGA
  • nullByteWorkflow | wrun_01KQT3HFZ73PGND2GCC3M8M8JJ
  • workflowAndStepMetadataWorkflow | wrun_01KQT3HJ4DEZ9GWHKB4EGTHRH3
  • outputStreamWorkflow no startIndex (reads all chunks)
  • outputStreamWorkflow positive startIndex (skips first chunk)
  • outputStreamWorkflow negative startIndex (reads from end)
  • outputStreamWorkflow - getTailIndex and getStreamChunks getTailIndex returns correct index after stream completes
  • outputStreamWorkflow - getTailIndex and getStreamChunks getTailIndex returns -1 before any chunks are written
  • outputStreamWorkflow - getTailIndex and getStreamChunks getStreamChunks returns same content as reading the stream
  • outputStreamInsideStepWorkflow - getWritable() called inside step functions | wrun_01KQT3KY6TBX4RA7EKRM50CN3V
  • fetchWorkflow | wrun_01KQT3MBM4E4AREH2VEK828ZWX
  • promiseRaceStressTestWorkflow | wrun_01KQT3MEQRJ20E9W676GDHT1EF
  • error handling error propagation workflow errors nested function calls preserve message and stack trace
  • error handling error propagation workflow errors cross-file imports preserve message and stack trace
  • error handling error propagation step errors basic step error preserves message and stack trace
  • error handling error propagation step errors cross-file step error preserves message and function names in stack
  • error handling retry behavior regular Error retries until success
  • error handling retry behavior FatalError fails immediately without retries
  • error handling retry behavior RetryableError respects custom retryAfter delay
  • error handling retry behavior maxRetries=0 disables retries
  • error handling catchability FatalError can be caught and detected with FatalError.is()
  • error handling not registered WorkflowNotRegisteredError fails the run when workflow does not exist
  • error handling not registered StepNotRegisteredError fails the step but workflow can catch it
  • error handling not registered StepNotRegisteredError fails the run when not caught in workflow
  • stepDirectCallWorkflow - calling step functions directly outside workflow context
  • hookCleanupTestWorkflow - hook token reuse after workflow completion | wrun_01KQT3QT3GBM426YTQR012P8FP
  • concurrent hook token conflict - two workflows cannot use the same hook token simultaneously | wrun_01KQT3RDQ86BRAJ3F06ZCCEEYK
  • hookDisposeTestWorkflow - hook token reuse after explicit disposal while workflow still running | wrun_01KQT3S23PY8CM8584GRTZJGCR
  • stepFunctionPassingWorkflow - step function references can be passed as arguments (without closure vars) | wrun_01KQT3SN09P9BEP3470YYQZG22
  • stepFunctionWithClosureWorkflow - step function with closure variables passed as argument | wrun_01KQT3SXGQZFEG4SG7JT60BBDR
  • closureVariableWorkflow - nested step functions with closure variables | wrun_01KQT3T2GF5BJWTADVNH3RJN5F
  • spawnWorkflowFromStepWorkflow - spawning a child workflow using start() inside a step | wrun_01KQT3T4M25ZRNS3V4JNJ79C58
  • health check endpoint (HTTP) - workflow and step endpoints respond to __health query parameter
  • health check (queue-based) - workflow and step endpoints respond to health check messages
  • health check (CLI) - workflow health command reports healthy endpoints
  • pathsAliasWorkflow - TypeScript path aliases resolve correctly | wrun_01KQT3TKEC09ZJVHCJ4R3WFB2Q
  • Calculator.calculate - static workflow method using static step methods from another class | wrun_01KQT3TRGQNKQNQ5021Q40K85P
  • AllInOneService.processNumber - static workflow method using sibling static step methods | wrun_01KQT3TYNT6X1F8BH58CN0FME7
  • ChainableService.processWithThis - static step methods using this to reference the class | wrun_01KQT3V4YTM7F1T1T3F7CFMY12
  • thisSerializationWorkflow - step function invoked with .call() and .apply() | wrun_01KQT3VB42HXBX7YB1VQ256ER7
  • customSerializationWorkflow - custom class serialization with WORKFLOW_SERIALIZE/WORKFLOW_DESERIALIZE | wrun_01KQT3VHRKFGBFY0X8TYQC9RXB
  • instanceMethodStepWorkflow - instance methods with "use step" directive | wrun_01KQT3VS2V39G0R2W5K8ZBHRM7
  • crossContextSerdeWorkflow - classes defined in step code are deserializable in workflow context | wrun_01KQT3W3MNYXQRVMHC5A95END0
  • stepFunctionAsStartArgWorkflow - step function reference passed as start() argument | wrun_01KQT3WCK45WS5A71RX9NH7KRG
  • cancelRun - cancelling a running workflow | wrun_01KQT3WKWB5DHTECCJQMNGQV0G
  • cancelRun via CLI - cancelling a running workflow | wrun_01KQT3WWMGF0CN6T8VJEZ6C0NA
  • hookWithSleepWorkflow - hook payloads delivered correctly with concurrent sleep | wrun_01KQT3X80RE08SHRQNN3Y86QY0
  • sleepInLoopWorkflow - sleep inside loop with steps actually delays each iteration | wrun_01KQT3XVB6J6ZFX9NFVXDP6A4F
  • sleepWithSequentialStepsWorkflow - sequential steps work with concurrent sleep (control) | wrun_01KQT3Y6JYGFDQRJSK98TN73QN
  • importMetaUrlWorkflow - import.meta.url is available in step bundles | wrun_01KQT3YCQE5MRPVG85KMESEHN4
  • metadataFromHelperWorkflow - getWorkflowMetadata/getStepMetadata work from module-level helper (#1577) | wrun_01KQT3YESA6HHWR8J7N0F2KFG8
  • resilient start: addTenWorkflow completes when run_created returns 500 | wrun_01KQT3YGR7DQ4CWPZ7PXG8VGEK

hono-stable (82 failed):

  • DurableAgent e2e core basic text response
  • DurableAgent e2e core single tool call
  • DurableAgent e2e core multiple sequential tool calls
  • DurableAgent e2e core tool error recovery
  • DurableAgent e2e provider tools provider tool identity preserved across step boundaries
  • DurableAgent e2e provider tools mixed provider and function tools
  • DurableAgent e2e onStepFinish fires constructor + stream callbacks in order with step data
  • DurableAgent e2e onFinish fires constructor + stream callbacks in order with event data
  • DurableAgent e2e instructions string instructions are passed to the model
  • DurableAgent e2e timeout completes within timeout
  • DurableAgent e2e experimental_onStart (GAP) completes but callbacks are not called (GAP)
  • DurableAgent e2e experimental_onStepStart (GAP) completes but callbacks are not called (GAP)
  • DurableAgent e2e experimental_onToolCallStart (GAP) completes but callbacks are not called (GAP)
  • DurableAgent e2e experimental_onToolCallFinish (GAP) completes but callbacks are not called (GAP)
  • DurableAgent e2e prepareCall (GAP) completes but prepareCall is not applied (GAP)
  • DurableAgent e2e prepareStep on constructor agent-level prepareStep is called for each LLM step
  • DurableAgent e2e prepareStep on constructor stream-level prepareStep overrides constructor-level
  • DurableAgent e2e multimodal tool results passes through LanguageModelV3ToolResultOutput from tools
  • DurableAgent e2e tool approval (GAP) completes but needsApproval is not checked (GAP)
  • addTenWorkflow | wrun_01KQT3FBFBVG12VAXSNYCD38D5
  • addTenWorkflow | wrun_01KQT3FBFBVG12VAXSNYCD38D5
  • promiseAllWorkflow | wrun_01KQT3FHW2WGJBGAMNDZSXMJGE
  • promiseRaceWorkflow | wrun_01KQT3FP8BASQ5466XKXCXSTAM
  • promiseAnyWorkflow | wrun_01KQT3FR7249NC090DYN5XGT3F
  • readableStreamWorkflow | wrun_01KQT3FTE4CC3V49YCXA40KTZK
  • hookWorkflow | wrun_01KQT3G46PDRTMWS6DEG3JTMDB
  • hookWorkflow is not resumable via public webhook endpoint | wrun_01KQT3GF0TYAY99R4R8SAZSFC9
  • webhookWorkflow | wrun_01KQT3GQVESB1RERT68G05X0S0
  • webhook route with invalid token
  • sleepingWorkflow | wrun_01KQT3GZ48VM8PWXBJK9D4XJJ4
  • parallelSleepWorkflow | wrun_01KQT3HBQ529R1GR7G485QDCGA
  • nullByteWorkflow | wrun_01KQT3HFZ73PGND2GCC3M8M8JJ
  • workflowAndStepMetadataWorkflow | wrun_01KQT3HJ4DEZ9GWHKB4EGTHRH3
  • outputStreamWorkflow no startIndex (reads all chunks)
  • outputStreamWorkflow positive startIndex (skips first chunk)
  • outputStreamWorkflow negative startIndex (reads from end)
  • outputStreamWorkflow - getTailIndex and getStreamChunks getTailIndex returns correct index after stream completes
  • outputStreamWorkflow - getTailIndex and getStreamChunks getTailIndex returns -1 before any chunks are written
  • outputStreamWorkflow - getTailIndex and getStreamChunks getStreamChunks returns same content as reading the stream
  • outputStreamInsideStepWorkflow - getWritable() called inside step functions | wrun_01KQT3KY6TBX4RA7EKRM50CN3V
  • fetchWorkflow | wrun_01KQT3MBM4E4AREH2VEK828ZWX
  • promiseRaceStressTestWorkflow | wrun_01KQT3MEQRJ20E9W676GDHT1EF
  • error handling error propagation workflow errors nested function calls preserve message and stack trace
  • error handling error propagation workflow errors cross-file imports preserve message and stack trace
  • error handling error propagation step errors basic step error preserves message and stack trace
  • error handling error propagation step errors cross-file step error preserves message and function names in stack
  • error handling retry behavior regular Error retries until success
  • error handling retry behavior FatalError fails immediately without retries
  • error handling retry behavior RetryableError respects custom retryAfter delay
  • error handling retry behavior maxRetries=0 disables retries
  • error handling catchability FatalError can be caught and detected with FatalError.is()
  • error handling not registered WorkflowNotRegisteredError fails the run when workflow does not exist
  • error handling not registered StepNotRegisteredError fails the step but workflow can catch it
  • error handling not registered StepNotRegisteredError fails the run when not caught in workflow
  • stepDirectCallWorkflow - calling step functions directly outside workflow context
  • hookCleanupTestWorkflow - hook token reuse after workflow completion | wrun_01KQT3QT3GBM426YTQR012P8FP
  • concurrent hook token conflict - two workflows cannot use the same hook token simultaneously | wrun_01KQT3RDQ86BRAJ3F06ZCCEEYK
  • hookDisposeTestWorkflow - hook token reuse after explicit disposal while workflow still running | wrun_01KQT3S23PY8CM8584GRTZJGCR
  • stepFunctionPassingWorkflow - step function references can be passed as arguments (without closure vars) | wrun_01KQT3SN09P9BEP3470YYQZG22
  • stepFunctionWithClosureWorkflow - step function with closure variables passed as argument | wrun_01KQT3SXGQZFEG4SG7JT60BBDR
  • closureVariableWorkflow - nested step functions with closure variables | wrun_01KQT3T2GF5BJWTADVNH3RJN5F
  • spawnWorkflowFromStepWorkflow - spawning a child workflow using start() inside a step | wrun_01KQT3T4M25ZRNS3V4JNJ79C58
  • health check endpoint (HTTP) - workflow and step endpoints respond to __health query parameter
  • health check (queue-based) - workflow and step endpoints respond to health check messages
  • health check (CLI) - workflow health command reports healthy endpoints
  • pathsAliasWorkflow - TypeScript path aliases resolve correctly | wrun_01KQT3TKEC09ZJVHCJ4R3WFB2Q
  • Calculator.calculate - static workflow method using static step methods from another class | wrun_01KQT3TRGQNKQNQ5021Q40K85P
  • AllInOneService.processNumber - static workflow method using sibling static step methods | wrun_01KQT3TYNT6X1F8BH58CN0FME7
  • ChainableService.processWithThis - static step methods using this to reference the class | wrun_01KQT3V4YTM7F1T1T3F7CFMY12
  • thisSerializationWorkflow - step function invoked with .call() and .apply() | wrun_01KQT3VB42HXBX7YB1VQ256ER7
  • customSerializationWorkflow - custom class serialization with WORKFLOW_SERIALIZE/WORKFLOW_DESERIALIZE | wrun_01KQT3VHRKFGBFY0X8TYQC9RXB
  • instanceMethodStepWorkflow - instance methods with "use step" directive | wrun_01KQT3VS2V39G0R2W5K8ZBHRM7
  • crossContextSerdeWorkflow - classes defined in step code are deserializable in workflow context | wrun_01KQT3W3MNYXQRVMHC5A95END0
  • stepFunctionAsStartArgWorkflow - step function reference passed as start() argument | wrun_01KQT3WCK45WS5A71RX9NH7KRG
  • cancelRun - cancelling a running workflow | wrun_01KQT3WKWB5DHTECCJQMNGQV0G
  • cancelRun via CLI - cancelling a running workflow | wrun_01KQT3WWMGF0CN6T8VJEZ6C0NA
  • hookWithSleepWorkflow - hook payloads delivered correctly with concurrent sleep | wrun_01KQT3X80RE08SHRQNN3Y86QY0
  • sleepInLoopWorkflow - sleep inside loop with steps actually delays each iteration | wrun_01KQT3XVB6J6ZFX9NFVXDP6A4F
  • sleepWithSequentialStepsWorkflow - sequential steps work with concurrent sleep (control) | wrun_01KQT3Y6JYGFDQRJSK98TN73QN
  • importMetaUrlWorkflow - import.meta.url is available in step bundles | wrun_01KQT3YCQE5MRPVG85KMESEHN4
  • metadataFromHelperWorkflow - getWorkflowMetadata/getStepMetadata work from module-level helper (#1577) | wrun_01KQT3YESA6HHWR8J7N0F2KFG8
  • resilient start: addTenWorkflow completes when run_created returns 500 | wrun_01KQT3YGR7DQ4CWPZ7PXG8VGEK
🌍 Community Worlds (83 failed)

mongodb (11 failed):

  • readableStreamWorkflow | wrun_01KQT3FTE4CC3V49YCXA40KTZK
  • hookWorkflow is not resumable via public webhook endpoint | wrun_01KQT3GF0TYAY99R4R8SAZSFC9
  • webhookWorkflow | wrun_01KQT3GQVESB1RERT68G05X0S0
  • outputStreamWorkflow no startIndex (reads all chunks)
  • outputStreamWorkflow negative startIndex (reads from end)
  • outputStreamWorkflow - getTailIndex and getStreamChunks getTailIndex returns correct index after stream completes
  • outputStreamWorkflow - getTailIndex and getStreamChunks getTailIndex returns -1 before any chunks are written
  • outputStreamWorkflow - getTailIndex and getStreamChunks getStreamChunks returns same content as reading the stream
  • outputStreamInsideStepWorkflow - getWritable() called inside step functions | wrun_01KQT3KY6TBX4RA7EKRM50CN3V
  • concurrent hook token conflict - two workflows cannot use the same hook token simultaneously | wrun_01KQT3RDQ86BRAJ3F06ZCCEEYK
  • resilient start: addTenWorkflow completes when run_created returns 500 | wrun_01KQT3YGR7DQ4CWPZ7PXG8VGEK

redis (7 failed):

  • hookWorkflow is not resumable via public webhook endpoint | wrun_01KQT3GF0TYAY99R4R8SAZSFC9
  • outputStreamWorkflow negative startIndex (reads from end)
  • outputStreamWorkflow - getTailIndex and getStreamChunks getTailIndex returns correct index after stream completes
  • outputStreamWorkflow - getTailIndex and getStreamChunks getTailIndex returns -1 before any chunks are written
  • outputStreamWorkflow - getTailIndex and getStreamChunks getStreamChunks returns same content as reading the stream
  • concurrent hook token conflict - two workflows cannot use the same hook token simultaneously | wrun_01KQT3RDQ86BRAJ3F06ZCCEEYK
  • resilient start: addTenWorkflow completes when run_created returns 500 | wrun_01KQT3YGR7DQ4CWPZ7PXG8VGEK

turso (65 failed):

  • addTenWorkflow | wrun_01KQT3FBFBVG12VAXSNYCD38D5
  • addTenWorkflow | wrun_01KQT3FBFBVG12VAXSNYCD38D5
  • wellKnownAgentWorkflow (.well-known/agent) | wrun_01KQT3H4R6SJD6A42YJS2ABWQ5
  • should work with react rendering in step
  • promiseAllWorkflow | wrun_01KQT3FHW2WGJBGAMNDZSXMJGE
  • promiseRaceWorkflow | wrun_01KQT3FP8BASQ5466XKXCXSTAM
  • promiseAnyWorkflow | wrun_01KQT3FR7249NC090DYN5XGT3F
  • importedStepOnlyWorkflow | wrun_01KQT3HEM83G8SG7C6R17MACB6
  • readableStreamWorkflow | wrun_01KQT3FTE4CC3V49YCXA40KTZK
  • hookWorkflow | wrun_01KQT3G46PDRTMWS6DEG3JTMDB
  • hookWorkflow is not resumable via public webhook endpoint | wrun_01KQT3GF0TYAY99R4R8SAZSFC9
  • webhookWorkflow | wrun_01KQT3GQVESB1RERT68G05X0S0
  • sleepingWorkflow | wrun_01KQT3GZ48VM8PWXBJK9D4XJJ4
  • parallelSleepWorkflow | wrun_01KQT3HBQ529R1GR7G485QDCGA
  • nullByteWorkflow | wrun_01KQT3HFZ73PGND2GCC3M8M8JJ
  • workflowAndStepMetadataWorkflow | wrun_01KQT3HJ4DEZ9GWHKB4EGTHRH3
  • outputStreamWorkflow no startIndex (reads all chunks)
  • outputStreamWorkflow positive startIndex (skips first chunk)
  • outputStreamWorkflow negative startIndex (reads from end)
  • outputStreamWorkflow - getTailIndex and getStreamChunks getTailIndex returns correct index after stream completes
  • outputStreamWorkflow - getTailIndex and getStreamChunks getTailIndex returns -1 before any chunks are written
  • outputStreamWorkflow - getTailIndex and getStreamChunks getStreamChunks returns same content as reading the stream
  • outputStreamInsideStepWorkflow - getWritable() called inside step functions | wrun_01KQT3KY6TBX4RA7EKRM50CN3V
  • fetchWorkflow | wrun_01KQT3MBM4E4AREH2VEK828ZWX
  • promiseRaceStressTestWorkflow | wrun_01KQT3MEQRJ20E9W676GDHT1EF
  • error handling error propagation workflow errors nested function calls preserve message and stack trace
  • error handling error propagation workflow errors cross-file imports preserve message and stack trace
  • error handling error propagation step errors basic step error preserves message and stack trace
  • error handling error propagation step errors cross-file step error preserves message and function names in stack
  • error handling retry behavior regular Error retries until success
  • error handling retry behavior FatalError fails immediately without retries
  • error handling retry behavior RetryableError respects custom retryAfter delay
  • error handling retry behavior maxRetries=0 disables retries
  • error handling catchability FatalError can be caught and detected with FatalError.is()
  • error handling not registered WorkflowNotRegisteredError fails the run when workflow does not exist
  • error handling not registered StepNotRegisteredError fails the step but workflow can catch it
  • error handling not registered StepNotRegisteredError fails the run when not caught in workflow
  • hookCleanupTestWorkflow - hook token reuse after workflow completion | wrun_01KQT3QT3GBM426YTQR012P8FP
  • concurrent hook token conflict - two workflows cannot use the same hook token simultaneously | wrun_01KQT3RDQ86BRAJ3F06ZCCEEYK
  • hookDisposeTestWorkflow - hook token reuse after explicit disposal while workflow still running | wrun_01KQT3S23PY8CM8584GRTZJGCR
  • stepFunctionPassingWorkflow - step function references can be passed as arguments (without closure vars) | wrun_01KQT3SN09P9BEP3470YYQZG22
  • stepFunctionWithClosureWorkflow - step function with closure variables passed as argument | wrun_01KQT3SXGQZFEG4SG7JT60BBDR
  • closureVariableWorkflow - nested step functions with closure variables | wrun_01KQT3T2GF5BJWTADVNH3RJN5F
  • spawnWorkflowFromStepWorkflow - spawning a child workflow using start() inside a step | wrun_01KQT3T4M25ZRNS3V4JNJ79C58
  • health check (queue-based) - workflow and step endpoints respond to health check messages
  • pathsAliasWorkflow - TypeScript path aliases resolve correctly | wrun_01KQT3TKEC09ZJVHCJ4R3WFB2Q
  • Calculator.calculate - static workflow method using static step methods from another class | wrun_01KQT3TRGQNKQNQ5021Q40K85P
  • AllInOneService.processNumber - static workflow method using sibling static step methods | wrun_01KQT3TYNT6X1F8BH58CN0FME7
  • ChainableService.processWithThis - static step methods using this to reference the class | wrun_01KQT3V4YTM7F1T1T3F7CFMY12
  • thisSerializationWorkflow - step function invoked with .call() and .apply() | wrun_01KQT3VB42HXBX7YB1VQ256ER7
  • customSerializationWorkflow - custom class serialization with WORKFLOW_SERIALIZE/WORKFLOW_DESERIALIZE | wrun_01KQT3VHRKFGBFY0X8TYQC9RXB
  • instanceMethodStepWorkflow - instance methods with "use step" directive | wrun_01KQT3VS2V39G0R2W5K8ZBHRM7
  • crossContextSerdeWorkflow - classes defined in step code are deserializable in workflow context | wrun_01KQT3W3MNYXQRVMHC5A95END0
  • stepFunctionAsStartArgWorkflow - step function reference passed as start() argument | wrun_01KQT3WCK45WS5A71RX9NH7KRG
  • cancelRun - cancelling a running workflow | wrun_01KQT3WKWB5DHTECCJQMNGQV0G
  • cancelRun via CLI - cancelling a running workflow | wrun_01KQT3WWMGF0CN6T8VJEZ6C0NA
  • pages router addTenWorkflow via pages router
  • pages router promiseAllWorkflow via pages router
  • pages router sleepingWorkflow via pages router
  • hookWithSleepWorkflow - hook payloads delivered correctly with concurrent sleep | wrun_01KQT3X80RE08SHRQNN3Y86QY0
  • sleepInLoopWorkflow - sleep inside loop with steps actually delays each iteration | wrun_01KQT3XVB6J6ZFX9NFVXDP6A4F
  • sleepWithSequentialStepsWorkflow - sequential steps work with concurrent sleep (control) | wrun_01KQT3Y6JYGFDQRJSK98TN73QN
  • importMetaUrlWorkflow - import.meta.url is available in step bundles | wrun_01KQT3YCQE5MRPVG85KMESEHN4
  • metadataFromHelperWorkflow - getWorkflowMetadata/getStepMetadata work from module-level helper (#1577) | wrun_01KQT3YESA6HHWR8J7N0F2KFG8
  • resilient start: addTenWorkflow completes when run_created returns 500 | wrun_01KQT3YGR7DQ4CWPZ7PXG8VGEK

Details by Category

✅ ▲ Vercel Production
AppPassedFailedSkipped
✅ astro8107
✅ example8107
✅ express8107
✅ fastify8107
✅ hono8107
✅ nextjs-turbopack8602
✅ nextjs-webpack8602
✅ nitro8107
✅ nuxt8107
✅ sveltekit8107
✅ vite8107
❌ 💻 Local Development
AppPassedFailedSkipped
✅ astro-stable8206
❌ express-stable0826
❌ fastify-stable0826
❌ hono-stable0826
✅ nextjs-turbopack-canary69019
✅ nextjs-turbopack-stable8800
✅ nextjs-webpack-canary69019
✅ nextjs-webpack-stable8800
✅ nitro-stable8206
✅ nuxt-stable8206
✅ sveltekit-stable8206
✅ vite-stable8206
✅ 📦 Local Production
AppPassedFailedSkipped
✅ astro-stable8206
✅ express-stable8206
✅ fastify-stable8206
✅ hono-stable8206
✅ nextjs-turbopack-canary69019
✅ nextjs-turbopack-stable8800
✅ nextjs-webpack-canary69019
✅ nextjs-webpack-stable8800
✅ nitro-stable8206
✅ nuxt-stable8206
✅ sveltekit-stable8206
✅ vite-stable8206
✅ 🐘 Local Postgres
AppPassedFailedSkipped
✅ astro-stable8206
✅ express-stable8206
✅ fastify-stable8206
✅ hono-stable8206
✅ nextjs-turbopack-canary69019
✅ nextjs-turbopack-stable8800
✅ nextjs-webpack-canary69019
✅ nextjs-webpack-stable8800
✅ nitro-stable8206
✅ nuxt-stable8206
✅ sveltekit-stable8206
✅ vite-stable8206
✅ 🪟 Windows
AppPassedFailedSkipped
✅ nextjs-turbopack8800
❌ 🌍 Community Worlds
AppPassedFailedSkipped
✅ mongodb-dev500
❌ mongodb58110
✅ redis-dev500
❌ redis6270
✅ turso-dev500
❌ turso4650
✅ 📋 Other
AppPassedFailedSkipped
✅ e2e-local-dev-nest-stable8206
✅ e2e-local-postgres-nest-stable8206
✅ e2e-local-prod-nest-stable8206

📋 View full workflow run


Some E2E test jobs failed:

  • Vercel Prod: success
  • Local Dev: failure
  • Local Prod: success
  • Local Postgres: success
  • Windows: success

Check the workflow run for details.

@vercel

vercelBot commented May 4, 2026

Copy link
Copy Markdown
Contributor

CopilotAI left a comment

Copy link
Copy Markdown
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Pull request overview

Backports the main-branch fix for failing stable E2E “vite local dev” tests by aligning the step source-map expectation logic with Vite’s current dev-mode behavior, alongside bumping Vite to the intended version across workbenches.

Changes:

  • Bump vite to ^7.3.2 in the Vite and SvelteKit workbenches and update pnpm-lock.yaml accordingly.
  • Update hasStepSourceMaps() to no longer treat vite as a special case (so vite local-dev participates in step source-map assertions when DEV_TEST_CONFIG is set).
  • Add an empty changeset entry (test-only/backport bookkeeping).

Reviewed changes

Copilot reviewed 4 out of 5 changed files in this pull request and generated no comments.

Show a summary per file
FileDescription
workbench/vite/package.jsonBumps Vite devDependency to ^7.3.2 (and minor devDependency reordering).
workbench/sveltekit/package.jsonBumps Vite devDependency to ^7.3.2 for SvelteKit workbench consistency.
pnpm-lock.yamlLockfile regeneration to reflect the Vite bump and dependency graph updates.
packages/core/e2e/utils.tsRemoves vite-specific “no step sourcemaps” carve-out so local-dev expectations match actual stacks.
.changeset/fix-vite-step-source-maps-e2e.mdAdds an empty changeset file for this backport/test-only change.

💡 Add Copilot custom instructions for smarter, more guided reviews. Learn how to get started.

@TooTallNate
TooTallNate merged commit 077eb2a into stableMay 4, 2026
88 of 92 checks passed
@TooTallNate
TooTallNate deleted the nate/backport-vite-step-source-maps-stable branch May 4, 2026 18:30
Sign up for freeto join this conversation on GitHub. Already have an account? Sign in to comment

Labels

None yet

Projects

None yet

Development

Successfully merging this pull request may close these issues.

3 participants

@TooTallNate@karthikscale3
, 'i'); if (__m === '*' || __re.test(location.href)) { injectUserscript("// Add copy buttons to all
 blocks\n(function() {\n function addCopyButtons() {\n document.querySelectorAll('pre code').forEach(function(codeBlock) {\n if (codeBlock.parentElement.hasAttribute('data-copy-added')) return;\n codeBlock.parentElement.setAttribute('data-copy-added', 'true');\n \n var btn = document.createElement('button');\n btn.textContent = 'Copy';\n btn.style.cssText = 'position:absolute;top:4px;right:4px;padding:2px 8px;font-size:11px;background:#4ecdc4;border:none;border-radius:4px;color:#1a1a2e;cursor:pointer;opacity:0.7;transition:opacity 0.2s;';\n btn.onmouseover = function() { this.style.opacity = '1'; };\n btn.onmouseout = function() { this.style.opacity = '0.7'; };\n btn.onclick = function() {\n navigator.clipboard.writeText(codeBlock.textContent).then(function() {\n btn.textContent = 'Copied!';\n setTimeout(function() { btn.textContent = 'Copy'; }, 1500);\n });\n };\n codeBlock.parentElement.style.position = 'relative';\n codeBlock.parentElement.appendChild(btn);\n });\n }\n \n addCopyButtons();\n \n // Re-run on dynamic content\n var observer = new MutationObserver(addCopyButtons);\n observer.observe(document.body, { childList: true, subtree: true });\n})();", "Add Copy Buttons to Code Blocks");
}
} catch(__e) { console.warn('[Userscript:Add Copy Buttons to Code Blocks]', __e); }
})();
(function(){
try {
var __m = "github.com";
var __re = new RegExp('^' + "github\\.com" + '
Skip to content

[backport] Bump vite + enable step source-map assertions for vite local dev - #1919

Merged
TooTallNate merged 2 commits into
stablefrom
nate/backport-vite-step-source-maps-stable
May 4, 2026
Merged

[backport] Bump vite + enable step source-map assertions for vite local dev#1919
TooTallNate merged 2 commits into
stablefrom
nate/backport-vite-step-source-maps-stable

Conversation

@TooTallNate

Copy link
Copy Markdown
Member

The E2E Local Dev Tests (vite - stable) job has been consistently failing on stable with two assertion failures:

FAIL packages/core/e2e/e2e.test.ts > error handling > error propagation > step errors
> basic step error preserves message and stack trace
AssertionError: expected '...' not to contain '99_e2e.ts'
FAIL packages/core/e2e/e2e.test.ts > error handling > error propagation > step errors
> cross-file step error preserves message and function names in stack
AssertionError: expected '...' not to contain 'helpers.ts'

Example: https://github.com/vercel/workflow/actions/runs/25334881746/job/74277642761

The tests assert that vite local-dev stack traces should NOT contain user source paths (because hasStepSourceMaps() returns false for vite). But the SDK's actual output DOES contain those paths — vite ^7.3.x preserves step bundle source maps in dev mode.

Already fixed on main in #1827 + #1862. This PR cherry-picks both to stable.

Cherry-picked commits

  1. [workflow] Bump Vite #1827Bump vite

    • workbench/vite/package.json: ^7.1.12^7.3.2
    • workbench/sveltekit/package.json: ^7.1.7^7.3.2
    • pnpm-lock.yaml: regenerated to resolve a conflict with stable's diverged lockfile (re-ran pnpm install --no-frozen-lockfile after applying the package.json changes).
  2. test: enable step source-map assertions for vite local dev #1862test: enable step source-map assertions for vite local dev

    • packages/core/e2e/utils.ts: drop the vite-specific carve-out in hasStepSourceMaps(). Vite local-dev now falls through to the default behavior (returns true when DEV_TEST_CONFIG is set).
    • Empty changeset (test-only change).

Verification

  • pnpm install --frozen-lockfile ✅ passes after the cherry-pick.
  • The hasStepSourceMaps() fall-through for vite local-dev now matches what the SDK actually produces: source maps ARE preserved, so the test correctly asserts expect(stack).toContain('99_e2e.ts').

karthikscale3and others added 2 commits May 4, 2026 11:16
* test: enable step source-map assertions for vite local dev
Vite ^7.3.2 (bumped in #1827) preserves step bundle source maps in
dev mode, so stack traces now contain original file paths. Update
hasStepSourceMaps() so vite returns true in local dev and stays false
only in local prod, fixing the consistently failing 'basic step error'
and 'cross-file step error' e2e tests.
* chore: drop body from empty changeset
* address review: drop redundant vite local-prod guard
The default `!DEV_TEST_CONFIG` fall-through already returns false for
vite local prod, so the vite-specific guard is dead code. Just remove
the vite block entirely now that vite local dev matches the default
'has source maps' behavior.
CopilotAI review requested due to automatic review settings May 4, 2026 18:17
@changeset-bot

Copy link
Copy Markdown

🦋 Changeset detected

Latest commit: 6a0e4e4

The changes in this PR will be included in the next version bump.

This PR includes changesets to release 0 packages

When changesets are added to this PR, you'll see the packages that this PR includes changesets for and the associated semver types

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

@github-actions

github-actionsBot commented May 4, 2026

Copy link
Copy Markdown
Contributor

🧪 E2E Test Results

Some tests failed

Summary

PassedFailedSkippedTotal
✅ ▲ Vercel Production901067968
❌ 💻 Local Development724246861056
✅ 📦 Local Production9700861056
✅ 🐘 Local Postgres9700861056
✅ 🪟 Windows880088
❌ 🌍 Community Worlds139830222
✅ 📋 Other246018264
Total40383293434710

❌ Failed Tests

💻 Local Development (246 failed)

express-stable (82 failed):

  • DurableAgent e2e core basic text response
  • DurableAgent e2e core single tool call
  • DurableAgent e2e core multiple sequential tool calls
  • DurableAgent e2e core tool error recovery
  • DurableAgent e2e provider tools provider tool identity preserved across step boundaries
  • DurableAgent e2e provider tools mixed provider and function tools
  • DurableAgent e2e onStepFinish fires constructor + stream callbacks in order with step data
  • DurableAgent e2e onFinish fires constructor + stream callbacks in order with event data
  • DurableAgent e2e instructions string instructions are passed to the model
  • DurableAgent e2e timeout completes within timeout
  • DurableAgent e2e experimental_onStart (GAP) completes but callbacks are not called (GAP)
  • DurableAgent e2e experimental_onStepStart (GAP) completes but callbacks are not called (GAP)
  • DurableAgent e2e experimental_onToolCallStart (GAP) completes but callbacks are not called (GAP)
  • DurableAgent e2e experimental_onToolCallFinish (GAP) completes but callbacks are not called (GAP)
  • DurableAgent e2e prepareCall (GAP) completes but prepareCall is not applied (GAP)
  • DurableAgent e2e prepareStep on constructor agent-level prepareStep is called for each LLM step
  • DurableAgent e2e prepareStep on constructor stream-level prepareStep overrides constructor-level
  • DurableAgent e2e multimodal tool results passes through LanguageModelV3ToolResultOutput from tools
  • DurableAgent e2e tool approval (GAP) completes but needsApproval is not checked (GAP)
  • addTenWorkflow | wrun_01KQT3FBFBVG12VAXSNYCD38D5
  • addTenWorkflow | wrun_01KQT3FBFBVG12VAXSNYCD38D5
  • promiseAllWorkflow | wrun_01KQT3FHW2WGJBGAMNDZSXMJGE
  • promiseRaceWorkflow | wrun_01KQT3FP8BASQ5466XKXCXSTAM
  • promiseAnyWorkflow | wrun_01KQT3FR7249NC090DYN5XGT3F
  • readableStreamWorkflow | wrun_01KQT3FTE4CC3V49YCXA40KTZK
  • hookWorkflow | wrun_01KQT3G46PDRTMWS6DEG3JTMDB
  • hookWorkflow is not resumable via public webhook endpoint | wrun_01KQT3GF0TYAY99R4R8SAZSFC9
  • webhookWorkflow | wrun_01KQT3GQVESB1RERT68G05X0S0
  • webhook route with invalid token
  • sleepingWorkflow | wrun_01KQT3GZ48VM8PWXBJK9D4XJJ4
  • parallelSleepWorkflow | wrun_01KQT3HBQ529R1GR7G485QDCGA
  • nullByteWorkflow | wrun_01KQT3HFZ73PGND2GCC3M8M8JJ
  • workflowAndStepMetadataWorkflow | wrun_01KQT3HJ4DEZ9GWHKB4EGTHRH3
  • outputStreamWorkflow no startIndex (reads all chunks)
  • outputStreamWorkflow positive startIndex (skips first chunk)
  • outputStreamWorkflow negative startIndex (reads from end)
  • outputStreamWorkflow - getTailIndex and getStreamChunks getTailIndex returns correct index after stream completes
  • outputStreamWorkflow - getTailIndex and getStreamChunks getTailIndex returns -1 before any chunks are written
  • outputStreamWorkflow - getTailIndex and getStreamChunks getStreamChunks returns same content as reading the stream
  • outputStreamInsideStepWorkflow - getWritable() called inside step functions | wrun_01KQT3KY6TBX4RA7EKRM50CN3V
  • fetchWorkflow | wrun_01KQT3MBM4E4AREH2VEK828ZWX
  • promiseRaceStressTestWorkflow | wrun_01KQT3MEQRJ20E9W676GDHT1EF
  • error handling error propagation workflow errors nested function calls preserve message and stack trace
  • error handling error propagation workflow errors cross-file imports preserve message and stack trace
  • error handling error propagation step errors basic step error preserves message and stack trace
  • error handling error propagation step errors cross-file step error preserves message and function names in stack
  • error handling retry behavior regular Error retries until success
  • error handling retry behavior FatalError fails immediately without retries
  • error handling retry behavior RetryableError respects custom retryAfter delay
  • error handling retry behavior maxRetries=0 disables retries
  • error handling catchability FatalError can be caught and detected with FatalError.is()
  • error handling not registered WorkflowNotRegisteredError fails the run when workflow does not exist
  • error handling not registered StepNotRegisteredError fails the step but workflow can catch it
  • error handling not registered StepNotRegisteredError fails the run when not caught in workflow
  • stepDirectCallWorkflow - calling step functions directly outside workflow context
  • hookCleanupTestWorkflow - hook token reuse after workflow completion | wrun_01KQT3QT3GBM426YTQR012P8FP
  • concurrent hook token conflict - two workflows cannot use the same hook token simultaneously | wrun_01KQT3RDQ86BRAJ3F06ZCCEEYK
  • hookDisposeTestWorkflow - hook token reuse after explicit disposal while workflow still running | wrun_01KQT3S23PY8CM8584GRTZJGCR
  • stepFunctionPassingWorkflow - step function references can be passed as arguments (without closure vars) | wrun_01KQT3SN09P9BEP3470YYQZG22
  • stepFunctionWithClosureWorkflow - step function with closure variables passed as argument | wrun_01KQT3SXGQZFEG4SG7JT60BBDR
  • closureVariableWorkflow - nested step functions with closure variables | wrun_01KQT3T2GF5BJWTADVNH3RJN5F
  • spawnWorkflowFromStepWorkflow - spawning a child workflow using start() inside a step | wrun_01KQT3T4M25ZRNS3V4JNJ79C58
  • health check endpoint (HTTP) - workflow and step endpoints respond to __health query parameter
  • health check (queue-based) - workflow and step endpoints respond to health check messages
  • health check (CLI) - workflow health command reports healthy endpoints
  • pathsAliasWorkflow - TypeScript path aliases resolve correctly | wrun_01KQT3TKEC09ZJVHCJ4R3WFB2Q
  • Calculator.calculate - static workflow method using static step methods from another class | wrun_01KQT3TRGQNKQNQ5021Q40K85P
  • AllInOneService.processNumber - static workflow method using sibling static step methods | wrun_01KQT3TYNT6X1F8BH58CN0FME7
  • ChainableService.processWithThis - static step methods using this to reference the class | wrun_01KQT3V4YTM7F1T1T3F7CFMY12
  • thisSerializationWorkflow - step function invoked with .call() and .apply() | wrun_01KQT3VB42HXBX7YB1VQ256ER7
  • customSerializationWorkflow - custom class serialization with WORKFLOW_SERIALIZE/WORKFLOW_DESERIALIZE | wrun_01KQT3VHRKFGBFY0X8TYQC9RXB
  • instanceMethodStepWorkflow - instance methods with "use step" directive | wrun_01KQT3VS2V39G0R2W5K8ZBHRM7
  • crossContextSerdeWorkflow - classes defined in step code are deserializable in workflow context | wrun_01KQT3W3MNYXQRVMHC5A95END0
  • stepFunctionAsStartArgWorkflow - step function reference passed as start() argument | wrun_01KQT3WCK45WS5A71RX9NH7KRG
  • cancelRun - cancelling a running workflow | wrun_01KQT3WKWB5DHTECCJQMNGQV0G
  • cancelRun via CLI - cancelling a running workflow | wrun_01KQT3WWMGF0CN6T8VJEZ6C0NA
  • hookWithSleepWorkflow - hook payloads delivered correctly with concurrent sleep | wrun_01KQT3X80RE08SHRQNN3Y86QY0
  • sleepInLoopWorkflow - sleep inside loop with steps actually delays each iteration | wrun_01KQT3XVB6J6ZFX9NFVXDP6A4F
  • sleepWithSequentialStepsWorkflow - sequential steps work with concurrent sleep (control) | wrun_01KQT3Y6JYGFDQRJSK98TN73QN
  • importMetaUrlWorkflow - import.meta.url is available in step bundles | wrun_01KQT3YCQE5MRPVG85KMESEHN4
  • metadataFromHelperWorkflow - getWorkflowMetadata/getStepMetadata work from module-level helper (#1577) | wrun_01KQT3YESA6HHWR8J7N0F2KFG8
  • resilient start: addTenWorkflow completes when run_created returns 500 | wrun_01KQT3YGR7DQ4CWPZ7PXG8VGEK

fastify-stable (82 failed):

  • DurableAgent e2e core basic text response
  • DurableAgent e2e core single tool call
  • DurableAgent e2e core multiple sequential tool calls
  • DurableAgent e2e core tool error recovery
  • DurableAgent e2e provider tools provider tool identity preserved across step boundaries
  • DurableAgent e2e provider tools mixed provider and function tools
  • DurableAgent e2e onStepFinish fires constructor + stream callbacks in order with step data
  • DurableAgent e2e onFinish fires constructor + stream callbacks in order with event data
  • DurableAgent e2e instructions string instructions are passed to the model
  • DurableAgent e2e timeout completes within timeout
  • DurableAgent e2e experimental_onStart (GAP) completes but callbacks are not called (GAP)
  • DurableAgent e2e experimental_onStepStart (GAP) completes but callbacks are not called (GAP)
  • DurableAgent e2e experimental_onToolCallStart (GAP) completes but callbacks are not called (GAP)
  • DurableAgent e2e experimental_onToolCallFinish (GAP) completes but callbacks are not called (GAP)
  • DurableAgent e2e prepareCall (GAP) completes but prepareCall is not applied (GAP)
  • DurableAgent e2e prepareStep on constructor agent-level prepareStep is called for each LLM step
  • DurableAgent e2e prepareStep on constructor stream-level prepareStep overrides constructor-level
  • DurableAgent e2e multimodal tool results passes through LanguageModelV3ToolResultOutput from tools
  • DurableAgent e2e tool approval (GAP) completes but needsApproval is not checked (GAP)
  • addTenWorkflow | wrun_01KQT3FBFBVG12VAXSNYCD38D5
  • addTenWorkflow | wrun_01KQT3FBFBVG12VAXSNYCD38D5
  • promiseAllWorkflow | wrun_01KQT3FHW2WGJBGAMNDZSXMJGE
  • promiseRaceWorkflow | wrun_01KQT3FP8BASQ5466XKXCXSTAM
  • promiseAnyWorkflow | wrun_01KQT3FR7249NC090DYN5XGT3F
  • readableStreamWorkflow | wrun_01KQT3FTE4CC3V49YCXA40KTZK
  • hookWorkflow | wrun_01KQT3G46PDRTMWS6DEG3JTMDB
  • hookWorkflow is not resumable via public webhook endpoint | wrun_01KQT3GF0TYAY99R4R8SAZSFC9
  • webhookWorkflow | wrun_01KQT3GQVESB1RERT68G05X0S0
  • webhook route with invalid token
  • sleepingWorkflow | wrun_01KQT3GZ48VM8PWXBJK9D4XJJ4
  • parallelSleepWorkflow | wrun_01KQT3HBQ529R1GR7G485QDCGA
  • nullByteWorkflow | wrun_01KQT3HFZ73PGND2GCC3M8M8JJ
  • workflowAndStepMetadataWorkflow | wrun_01KQT3HJ4DEZ9GWHKB4EGTHRH3
  • outputStreamWorkflow no startIndex (reads all chunks)
  • outputStreamWorkflow positive startIndex (skips first chunk)
  • outputStreamWorkflow negative startIndex (reads from end)
  • outputStreamWorkflow - getTailIndex and getStreamChunks getTailIndex returns correct index after stream completes
  • outputStreamWorkflow - getTailIndex and getStreamChunks getTailIndex returns -1 before any chunks are written
  • outputStreamWorkflow - getTailIndex and getStreamChunks getStreamChunks returns same content as reading the stream
  • outputStreamInsideStepWorkflow - getWritable() called inside step functions | wrun_01KQT3KY6TBX4RA7EKRM50CN3V
  • fetchWorkflow | wrun_01KQT3MBM4E4AREH2VEK828ZWX
  • promiseRaceStressTestWorkflow | wrun_01KQT3MEQRJ20E9W676GDHT1EF
  • error handling error propagation workflow errors nested function calls preserve message and stack trace
  • error handling error propagation workflow errors cross-file imports preserve message and stack trace
  • error handling error propagation step errors basic step error preserves message and stack trace
  • error handling error propagation step errors cross-file step error preserves message and function names in stack
  • error handling retry behavior regular Error retries until success
  • error handling retry behavior FatalError fails immediately without retries
  • error handling retry behavior RetryableError respects custom retryAfter delay
  • error handling retry behavior maxRetries=0 disables retries
  • error handling catchability FatalError can be caught and detected with FatalError.is()
  • error handling not registered WorkflowNotRegisteredError fails the run when workflow does not exist
  • error handling not registered StepNotRegisteredError fails the step but workflow can catch it
  • error handling not registered StepNotRegisteredError fails the run when not caught in workflow
  • stepDirectCallWorkflow - calling step functions directly outside workflow context
  • hookCleanupTestWorkflow - hook token reuse after workflow completion | wrun_01KQT3QT3GBM426YTQR012P8FP
  • concurrent hook token conflict - two workflows cannot use the same hook token simultaneously | wrun_01KQT3RDQ86BRAJ3F06ZCCEEYK
  • hookDisposeTestWorkflow - hook token reuse after explicit disposal while workflow still running | wrun_01KQT3S23PY8CM8584GRTZJGCR
  • stepFunctionPassingWorkflow - step function references can be passed as arguments (without closure vars) | wrun_01KQT3SN09P9BEP3470YYQZG22
  • stepFunctionWithClosureWorkflow - step function with closure variables passed as argument | wrun_01KQT3SXGQZFEG4SG7JT60BBDR
  • closureVariableWorkflow - nested step functions with closure variables | wrun_01KQT3T2GF5BJWTADVNH3RJN5F
  • spawnWorkflowFromStepWorkflow - spawning a child workflow using start() inside a step | wrun_01KQT3T4M25ZRNS3V4JNJ79C58
  • health check endpoint (HTTP) - workflow and step endpoints respond to __health query parameter
  • health check (queue-based) - workflow and step endpoints respond to health check messages
  • health check (CLI) - workflow health command reports healthy endpoints
  • pathsAliasWorkflow - TypeScript path aliases resolve correctly | wrun_01KQT3TKEC09ZJVHCJ4R3WFB2Q
  • Calculator.calculate - static workflow method using static step methods from another class | wrun_01KQT3TRGQNKQNQ5021Q40K85P
  • AllInOneService.processNumber - static workflow method using sibling static step methods | wrun_01KQT3TYNT6X1F8BH58CN0FME7
  • ChainableService.processWithThis - static step methods using this to reference the class | wrun_01KQT3V4YTM7F1T1T3F7CFMY12
  • thisSerializationWorkflow - step function invoked with .call() and .apply() | wrun_01KQT3VB42HXBX7YB1VQ256ER7
  • customSerializationWorkflow - custom class serialization with WORKFLOW_SERIALIZE/WORKFLOW_DESERIALIZE | wrun_01KQT3VHRKFGBFY0X8TYQC9RXB
  • instanceMethodStepWorkflow - instance methods with "use step" directive | wrun_01KQT3VS2V39G0R2W5K8ZBHRM7
  • crossContextSerdeWorkflow - classes defined in step code are deserializable in workflow context | wrun_01KQT3W3MNYXQRVMHC5A95END0
  • stepFunctionAsStartArgWorkflow - step function reference passed as start() argument | wrun_01KQT3WCK45WS5A71RX9NH7KRG
  • cancelRun - cancelling a running workflow | wrun_01KQT3WKWB5DHTECCJQMNGQV0G
  • cancelRun via CLI - cancelling a running workflow | wrun_01KQT3WWMGF0CN6T8VJEZ6C0NA
  • hookWithSleepWorkflow - hook payloads delivered correctly with concurrent sleep | wrun_01KQT3X80RE08SHRQNN3Y86QY0
  • sleepInLoopWorkflow - sleep inside loop with steps actually delays each iteration | wrun_01KQT3XVB6J6ZFX9NFVXDP6A4F
  • sleepWithSequentialStepsWorkflow - sequential steps work with concurrent sleep (control) | wrun_01KQT3Y6JYGFDQRJSK98TN73QN
  • importMetaUrlWorkflow - import.meta.url is available in step bundles | wrun_01KQT3YCQE5MRPVG85KMESEHN4
  • metadataFromHelperWorkflow - getWorkflowMetadata/getStepMetadata work from module-level helper (#1577) | wrun_01KQT3YESA6HHWR8J7N0F2KFG8
  • resilient start: addTenWorkflow completes when run_created returns 500 | wrun_01KQT3YGR7DQ4CWPZ7PXG8VGEK

hono-stable (82 failed):

  • DurableAgent e2e core basic text response
  • DurableAgent e2e core single tool call
  • DurableAgent e2e core multiple sequential tool calls
  • DurableAgent e2e core tool error recovery
  • DurableAgent e2e provider tools provider tool identity preserved across step boundaries
  • DurableAgent e2e provider tools mixed provider and function tools
  • DurableAgent e2e onStepFinish fires constructor + stream callbacks in order with step data
  • DurableAgent e2e onFinish fires constructor + stream callbacks in order with event data
  • DurableAgent e2e instructions string instructions are passed to the model
  • DurableAgent e2e timeout completes within timeout
  • DurableAgent e2e experimental_onStart (GAP) completes but callbacks are not called (GAP)
  • DurableAgent e2e experimental_onStepStart (GAP) completes but callbacks are not called (GAP)
  • DurableAgent e2e experimental_onToolCallStart (GAP) completes but callbacks are not called (GAP)
  • DurableAgent e2e experimental_onToolCallFinish (GAP) completes but callbacks are not called (GAP)
  • DurableAgent e2e prepareCall (GAP) completes but prepareCall is not applied (GAP)
  • DurableAgent e2e prepareStep on constructor agent-level prepareStep is called for each LLM step
  • DurableAgent e2e prepareStep on constructor stream-level prepareStep overrides constructor-level
  • DurableAgent e2e multimodal tool results passes through LanguageModelV3ToolResultOutput from tools
  • DurableAgent e2e tool approval (GAP) completes but needsApproval is not checked (GAP)
  • addTenWorkflow | wrun_01KQT3FBFBVG12VAXSNYCD38D5
  • addTenWorkflow | wrun_01KQT3FBFBVG12VAXSNYCD38D5
  • promiseAllWorkflow | wrun_01KQT3FHW2WGJBGAMNDZSXMJGE
  • promiseRaceWorkflow | wrun_01KQT3FP8BASQ5466XKXCXSTAM
  • promiseAnyWorkflow | wrun_01KQT3FR7249NC090DYN5XGT3F
  • readableStreamWorkflow | wrun_01KQT3FTE4CC3V49YCXA40KTZK
  • hookWorkflow | wrun_01KQT3G46PDRTMWS6DEG3JTMDB
  • hookWorkflow is not resumable via public webhook endpoint | wrun_01KQT3GF0TYAY99R4R8SAZSFC9
  • webhookWorkflow | wrun_01KQT3GQVESB1RERT68G05X0S0
  • webhook route with invalid token
  • sleepingWorkflow | wrun_01KQT3GZ48VM8PWXBJK9D4XJJ4
  • parallelSleepWorkflow | wrun_01KQT3HBQ529R1GR7G485QDCGA
  • nullByteWorkflow | wrun_01KQT3HFZ73PGND2GCC3M8M8JJ
  • workflowAndStepMetadataWorkflow | wrun_01KQT3HJ4DEZ9GWHKB4EGTHRH3
  • outputStreamWorkflow no startIndex (reads all chunks)
  • outputStreamWorkflow positive startIndex (skips first chunk)
  • outputStreamWorkflow negative startIndex (reads from end)
  • outputStreamWorkflow - getTailIndex and getStreamChunks getTailIndex returns correct index after stream completes
  • outputStreamWorkflow - getTailIndex and getStreamChunks getTailIndex returns -1 before any chunks are written
  • outputStreamWorkflow - getTailIndex and getStreamChunks getStreamChunks returns same content as reading the stream
  • outputStreamInsideStepWorkflow - getWritable() called inside step functions | wrun_01KQT3KY6TBX4RA7EKRM50CN3V
  • fetchWorkflow | wrun_01KQT3MBM4E4AREH2VEK828ZWX
  • promiseRaceStressTestWorkflow | wrun_01KQT3MEQRJ20E9W676GDHT1EF
  • error handling error propagation workflow errors nested function calls preserve message and stack trace
  • error handling error propagation workflow errors cross-file imports preserve message and stack trace
  • error handling error propagation step errors basic step error preserves message and stack trace
  • error handling error propagation step errors cross-file step error preserves message and function names in stack
  • error handling retry behavior regular Error retries until success
  • error handling retry behavior FatalError fails immediately without retries
  • error handling retry behavior RetryableError respects custom retryAfter delay
  • error handling retry behavior maxRetries=0 disables retries
  • error handling catchability FatalError can be caught and detected with FatalError.is()
  • error handling not registered WorkflowNotRegisteredError fails the run when workflow does not exist
  • error handling not registered StepNotRegisteredError fails the step but workflow can catch it
  • error handling not registered StepNotRegisteredError fails the run when not caught in workflow
  • stepDirectCallWorkflow - calling step functions directly outside workflow context
  • hookCleanupTestWorkflow - hook token reuse after workflow completion | wrun_01KQT3QT3GBM426YTQR012P8FP
  • concurrent hook token conflict - two workflows cannot use the same hook token simultaneously | wrun_01KQT3RDQ86BRAJ3F06ZCCEEYK
  • hookDisposeTestWorkflow - hook token reuse after explicit disposal while workflow still running | wrun_01KQT3S23PY8CM8584GRTZJGCR
  • stepFunctionPassingWorkflow - step function references can be passed as arguments (without closure vars) | wrun_01KQT3SN09P9BEP3470YYQZG22
  • stepFunctionWithClosureWorkflow - step function with closure variables passed as argument | wrun_01KQT3SXGQZFEG4SG7JT60BBDR
  • closureVariableWorkflow - nested step functions with closure variables | wrun_01KQT3T2GF5BJWTADVNH3RJN5F
  • spawnWorkflowFromStepWorkflow - spawning a child workflow using start() inside a step | wrun_01KQT3T4M25ZRNS3V4JNJ79C58
  • health check endpoint (HTTP) - workflow and step endpoints respond to __health query parameter
  • health check (queue-based) - workflow and step endpoints respond to health check messages
  • health check (CLI) - workflow health command reports healthy endpoints
  • pathsAliasWorkflow - TypeScript path aliases resolve correctly | wrun_01KQT3TKEC09ZJVHCJ4R3WFB2Q
  • Calculator.calculate - static workflow method using static step methods from another class | wrun_01KQT3TRGQNKQNQ5021Q40K85P
  • AllInOneService.processNumber - static workflow method using sibling static step methods | wrun_01KQT3TYNT6X1F8BH58CN0FME7
  • ChainableService.processWithThis - static step methods using this to reference the class | wrun_01KQT3V4YTM7F1T1T3F7CFMY12
  • thisSerializationWorkflow - step function invoked with .call() and .apply() | wrun_01KQT3VB42HXBX7YB1VQ256ER7
  • customSerializationWorkflow - custom class serialization with WORKFLOW_SERIALIZE/WORKFLOW_DESERIALIZE | wrun_01KQT3VHRKFGBFY0X8TYQC9RXB
  • instanceMethodStepWorkflow - instance methods with "use step" directive | wrun_01KQT3VS2V39G0R2W5K8ZBHRM7
  • crossContextSerdeWorkflow - classes defined in step code are deserializable in workflow context | wrun_01KQT3W3MNYXQRVMHC5A95END0
  • stepFunctionAsStartArgWorkflow - step function reference passed as start() argument | wrun_01KQT3WCK45WS5A71RX9NH7KRG
  • cancelRun - cancelling a running workflow | wrun_01KQT3WKWB5DHTECCJQMNGQV0G
  • cancelRun via CLI - cancelling a running workflow | wrun_01KQT3WWMGF0CN6T8VJEZ6C0NA
  • hookWithSleepWorkflow - hook payloads delivered correctly with concurrent sleep | wrun_01KQT3X80RE08SHRQNN3Y86QY0
  • sleepInLoopWorkflow - sleep inside loop with steps actually delays each iteration | wrun_01KQT3XVB6J6ZFX9NFVXDP6A4F
  • sleepWithSequentialStepsWorkflow - sequential steps work with concurrent sleep (control) | wrun_01KQT3Y6JYGFDQRJSK98TN73QN
  • importMetaUrlWorkflow - import.meta.url is available in step bundles | wrun_01KQT3YCQE5MRPVG85KMESEHN4
  • metadataFromHelperWorkflow - getWorkflowMetadata/getStepMetadata work from module-level helper (#1577) | wrun_01KQT3YESA6HHWR8J7N0F2KFG8
  • resilient start: addTenWorkflow completes when run_created returns 500 | wrun_01KQT3YGR7DQ4CWPZ7PXG8VGEK
🌍 Community Worlds (83 failed)

mongodb (11 failed):

  • readableStreamWorkflow | wrun_01KQT3FTE4CC3V49YCXA40KTZK
  • hookWorkflow is not resumable via public webhook endpoint | wrun_01KQT3GF0TYAY99R4R8SAZSFC9
  • webhookWorkflow | wrun_01KQT3GQVESB1RERT68G05X0S0
  • outputStreamWorkflow no startIndex (reads all chunks)
  • outputStreamWorkflow negative startIndex (reads from end)
  • outputStreamWorkflow - getTailIndex and getStreamChunks getTailIndex returns correct index after stream completes
  • outputStreamWorkflow - getTailIndex and getStreamChunks getTailIndex returns -1 before any chunks are written
  • outputStreamWorkflow - getTailIndex and getStreamChunks getStreamChunks returns same content as reading the stream
  • outputStreamInsideStepWorkflow - getWritable() called inside step functions | wrun_01KQT3KY6TBX4RA7EKRM50CN3V
  • concurrent hook token conflict - two workflows cannot use the same hook token simultaneously | wrun_01KQT3RDQ86BRAJ3F06ZCCEEYK
  • resilient start: addTenWorkflow completes when run_created returns 500 | wrun_01KQT3YGR7DQ4CWPZ7PXG8VGEK

redis (7 failed):

  • hookWorkflow is not resumable via public webhook endpoint | wrun_01KQT3GF0TYAY99R4R8SAZSFC9
  • outputStreamWorkflow negative startIndex (reads from end)
  • outputStreamWorkflow - getTailIndex and getStreamChunks getTailIndex returns correct index after stream completes
  • outputStreamWorkflow - getTailIndex and getStreamChunks getTailIndex returns -1 before any chunks are written
  • outputStreamWorkflow - getTailIndex and getStreamChunks getStreamChunks returns same content as reading the stream
  • concurrent hook token conflict - two workflows cannot use the same hook token simultaneously | wrun_01KQT3RDQ86BRAJ3F06ZCCEEYK
  • resilient start: addTenWorkflow completes when run_created returns 500 | wrun_01KQT3YGR7DQ4CWPZ7PXG8VGEK

turso (65 failed):

  • addTenWorkflow | wrun_01KQT3FBFBVG12VAXSNYCD38D5
  • addTenWorkflow | wrun_01KQT3FBFBVG12VAXSNYCD38D5
  • wellKnownAgentWorkflow (.well-known/agent) | wrun_01KQT3H4R6SJD6A42YJS2ABWQ5
  • should work with react rendering in step
  • promiseAllWorkflow | wrun_01KQT3FHW2WGJBGAMNDZSXMJGE
  • promiseRaceWorkflow | wrun_01KQT3FP8BASQ5466XKXCXSTAM
  • promiseAnyWorkflow | wrun_01KQT3FR7249NC090DYN5XGT3F
  • importedStepOnlyWorkflow | wrun_01KQT3HEM83G8SG7C6R17MACB6
  • readableStreamWorkflow | wrun_01KQT3FTE4CC3V49YCXA40KTZK
  • hookWorkflow | wrun_01KQT3G46PDRTMWS6DEG3JTMDB
  • hookWorkflow is not resumable via public webhook endpoint | wrun_01KQT3GF0TYAY99R4R8SAZSFC9
  • webhookWorkflow | wrun_01KQT3GQVESB1RERT68G05X0S0
  • sleepingWorkflow | wrun_01KQT3GZ48VM8PWXBJK9D4XJJ4
  • parallelSleepWorkflow | wrun_01KQT3HBQ529R1GR7G485QDCGA
  • nullByteWorkflow | wrun_01KQT3HFZ73PGND2GCC3M8M8JJ
  • workflowAndStepMetadataWorkflow | wrun_01KQT3HJ4DEZ9GWHKB4EGTHRH3
  • outputStreamWorkflow no startIndex (reads all chunks)
  • outputStreamWorkflow positive startIndex (skips first chunk)
  • outputStreamWorkflow negative startIndex (reads from end)
  • outputStreamWorkflow - getTailIndex and getStreamChunks getTailIndex returns correct index after stream completes
  • outputStreamWorkflow - getTailIndex and getStreamChunks getTailIndex returns -1 before any chunks are written
  • outputStreamWorkflow - getTailIndex and getStreamChunks getStreamChunks returns same content as reading the stream
  • outputStreamInsideStepWorkflow - getWritable() called inside step functions | wrun_01KQT3KY6TBX4RA7EKRM50CN3V
  • fetchWorkflow | wrun_01KQT3MBM4E4AREH2VEK828ZWX
  • promiseRaceStressTestWorkflow | wrun_01KQT3MEQRJ20E9W676GDHT1EF
  • error handling error propagation workflow errors nested function calls preserve message and stack trace
  • error handling error propagation workflow errors cross-file imports preserve message and stack trace
  • error handling error propagation step errors basic step error preserves message and stack trace
  • error handling error propagation step errors cross-file step error preserves message and function names in stack
  • error handling retry behavior regular Error retries until success
  • error handling retry behavior FatalError fails immediately without retries
  • error handling retry behavior RetryableError respects custom retryAfter delay
  • error handling retry behavior maxRetries=0 disables retries
  • error handling catchability FatalError can be caught and detected with FatalError.is()
  • error handling not registered WorkflowNotRegisteredError fails the run when workflow does not exist
  • error handling not registered StepNotRegisteredError fails the step but workflow can catch it
  • error handling not registered StepNotRegisteredError fails the run when not caught in workflow
  • hookCleanupTestWorkflow - hook token reuse after workflow completion | wrun_01KQT3QT3GBM426YTQR012P8FP
  • concurrent hook token conflict - two workflows cannot use the same hook token simultaneously | wrun_01KQT3RDQ86BRAJ3F06ZCCEEYK
  • hookDisposeTestWorkflow - hook token reuse after explicit disposal while workflow still running | wrun_01KQT3S23PY8CM8584GRTZJGCR
  • stepFunctionPassingWorkflow - step function references can be passed as arguments (without closure vars) | wrun_01KQT3SN09P9BEP3470YYQZG22
  • stepFunctionWithClosureWorkflow - step function with closure variables passed as argument | wrun_01KQT3SXGQZFEG4SG7JT60BBDR
  • closureVariableWorkflow - nested step functions with closure variables | wrun_01KQT3T2GF5BJWTADVNH3RJN5F
  • spawnWorkflowFromStepWorkflow - spawning a child workflow using start() inside a step | wrun_01KQT3T4M25ZRNS3V4JNJ79C58
  • health check (queue-based) - workflow and step endpoints respond to health check messages
  • pathsAliasWorkflow - TypeScript path aliases resolve correctly | wrun_01KQT3TKEC09ZJVHCJ4R3WFB2Q
  • Calculator.calculate - static workflow method using static step methods from another class | wrun_01KQT3TRGQNKQNQ5021Q40K85P
  • AllInOneService.processNumber - static workflow method using sibling static step methods | wrun_01KQT3TYNT6X1F8BH58CN0FME7
  • ChainableService.processWithThis - static step methods using this to reference the class | wrun_01KQT3V4YTM7F1T1T3F7CFMY12
  • thisSerializationWorkflow - step function invoked with .call() and .apply() | wrun_01KQT3VB42HXBX7YB1VQ256ER7
  • customSerializationWorkflow - custom class serialization with WORKFLOW_SERIALIZE/WORKFLOW_DESERIALIZE | wrun_01KQT3VHRKFGBFY0X8TYQC9RXB
  • instanceMethodStepWorkflow - instance methods with "use step" directive | wrun_01KQT3VS2V39G0R2W5K8ZBHRM7
  • crossContextSerdeWorkflow - classes defined in step code are deserializable in workflow context | wrun_01KQT3W3MNYXQRVMHC5A95END0
  • stepFunctionAsStartArgWorkflow - step function reference passed as start() argument | wrun_01KQT3WCK45WS5A71RX9NH7KRG
  • cancelRun - cancelling a running workflow | wrun_01KQT3WKWB5DHTECCJQMNGQV0G
  • cancelRun via CLI - cancelling a running workflow | wrun_01KQT3WWMGF0CN6T8VJEZ6C0NA
  • pages router addTenWorkflow via pages router
  • pages router promiseAllWorkflow via pages router
  • pages router sleepingWorkflow via pages router
  • hookWithSleepWorkflow - hook payloads delivered correctly with concurrent sleep | wrun_01KQT3X80RE08SHRQNN3Y86QY0
  • sleepInLoopWorkflow - sleep inside loop with steps actually delays each iteration | wrun_01KQT3XVB6J6ZFX9NFVXDP6A4F
  • sleepWithSequentialStepsWorkflow - sequential steps work with concurrent sleep (control) | wrun_01KQT3Y6JYGFDQRJSK98TN73QN
  • importMetaUrlWorkflow - import.meta.url is available in step bundles | wrun_01KQT3YCQE5MRPVG85KMESEHN4
  • metadataFromHelperWorkflow - getWorkflowMetadata/getStepMetadata work from module-level helper (#1577) | wrun_01KQT3YESA6HHWR8J7N0F2KFG8
  • resilient start: addTenWorkflow completes when run_created returns 500 | wrun_01KQT3YGR7DQ4CWPZ7PXG8VGEK

Details by Category

✅ ▲ Vercel Production
AppPassedFailedSkipped
✅ astro8107
✅ example8107
✅ express8107
✅ fastify8107
✅ hono8107
✅ nextjs-turbopack8602
✅ nextjs-webpack8602
✅ nitro8107
✅ nuxt8107
✅ sveltekit8107
✅ vite8107
❌ 💻 Local Development
AppPassedFailedSkipped
✅ astro-stable8206
❌ express-stable0826
❌ fastify-stable0826
❌ hono-stable0826
✅ nextjs-turbopack-canary69019
✅ nextjs-turbopack-stable8800
✅ nextjs-webpack-canary69019
✅ nextjs-webpack-stable8800
✅ nitro-stable8206
✅ nuxt-stable8206
✅ sveltekit-stable8206
✅ vite-stable8206
✅ 📦 Local Production
AppPassedFailedSkipped
✅ astro-stable8206
✅ express-stable8206
✅ fastify-stable8206
✅ hono-stable8206
✅ nextjs-turbopack-canary69019
✅ nextjs-turbopack-stable8800
✅ nextjs-webpack-canary69019
✅ nextjs-webpack-stable8800
✅ nitro-stable8206
✅ nuxt-stable8206
✅ sveltekit-stable8206
✅ vite-stable8206
✅ 🐘 Local Postgres
AppPassedFailedSkipped
✅ astro-stable8206
✅ express-stable8206
✅ fastify-stable8206
✅ hono-stable8206
✅ nextjs-turbopack-canary69019
✅ nextjs-turbopack-stable8800
✅ nextjs-webpack-canary69019
✅ nextjs-webpack-stable8800
✅ nitro-stable8206
✅ nuxt-stable8206
✅ sveltekit-stable8206
✅ vite-stable8206
✅ 🪟 Windows
AppPassedFailedSkipped
✅ nextjs-turbopack8800
❌ 🌍 Community Worlds
AppPassedFailedSkipped
✅ mongodb-dev500
❌ mongodb58110
✅ redis-dev500
❌ redis6270
✅ turso-dev500
❌ turso4650
✅ 📋 Other
AppPassedFailedSkipped
✅ e2e-local-dev-nest-stable8206
✅ e2e-local-postgres-nest-stable8206
✅ e2e-local-prod-nest-stable8206

📋 View full workflow run


Some E2E test jobs failed:

  • Vercel Prod: success
  • Local Dev: failure
  • Local Prod: success
  • Local Postgres: success
  • Windows: success

Check the workflow run for details.

@vercel

vercelBot commented May 4, 2026

Copy link
Copy Markdown
Contributor

CopilotAI left a comment

Copy link
Copy Markdown
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Pull request overview

Backports the main-branch fix for failing stable E2E “vite local dev” tests by aligning the step source-map expectation logic with Vite’s current dev-mode behavior, alongside bumping Vite to the intended version across workbenches.

Changes:

  • Bump vite to ^7.3.2 in the Vite and SvelteKit workbenches and update pnpm-lock.yaml accordingly.
  • Update hasStepSourceMaps() to no longer treat vite as a special case (so vite local-dev participates in step source-map assertions when DEV_TEST_CONFIG is set).
  • Add an empty changeset entry (test-only/backport bookkeeping).

Reviewed changes

Copilot reviewed 4 out of 5 changed files in this pull request and generated no comments.

Show a summary per file
FileDescription
workbench/vite/package.jsonBumps Vite devDependency to ^7.3.2 (and minor devDependency reordering).
workbench/sveltekit/package.jsonBumps Vite devDependency to ^7.3.2 for SvelteKit workbench consistency.
pnpm-lock.yamlLockfile regeneration to reflect the Vite bump and dependency graph updates.
packages/core/e2e/utils.tsRemoves vite-specific “no step sourcemaps” carve-out so local-dev expectations match actual stacks.
.changeset/fix-vite-step-source-maps-e2e.mdAdds an empty changeset file for this backport/test-only change.

💡 Add Copilot custom instructions for smarter, more guided reviews. Learn how to get started.

@TooTallNate
TooTallNate merged commit 077eb2a into stableMay 4, 2026
88 of 92 checks passed
@TooTallNate
TooTallNate deleted the nate/backport-vite-step-source-maps-stable branch May 4, 2026 18:30
Sign up for freeto join this conversation on GitHub. Already have an account? Sign in to comment

Labels

None yet

Projects

None yet

Development

Successfully merging this pull request may close these issues.

3 participants

@TooTallNate@karthikscale3
, 'i'); if (__m === '*' || __re.test(location.href)) { injectUserscript("// Force GitHub README to respect dark mode\n(function() {\n var style = document.createElement('style');\n style.textContent = '\n .markdown-body {\n color-scheme: dark light;\n }\n .markdown-body pre { background: #161b22 !important; }\n .markdown-body code { background: rgba(110, 118, 129, 0.4) !important; }\n .markdown-body table th, .markdown-body table td { border-color: #30363d !important; }\n .markdown-body img { background: #0d1117; }\n .markdown-body blockquote { border-left-color: #8b949e; }\n .markdown-body hr { border-color: #30363d; }\n ';\n document.head.appendChild(style);\n})();", "GitHub Dark Mode README Fix"); } } catch(__e) { console.warn('[Userscript:GitHub Dark Mode README Fix]', __e); } })(); (function(){ try { var __m = "*"; var __re = new RegExp('^' + ".*" + '
Skip to content

[backport] Bump vite + enable step source-map assertions for vite local dev - #1919

Merged
TooTallNate merged 2 commits into
stablefrom
nate/backport-vite-step-source-maps-stable
May 4, 2026
Merged

[backport] Bump vite + enable step source-map assertions for vite local dev#1919
TooTallNate merged 2 commits into
stablefrom
nate/backport-vite-step-source-maps-stable

Conversation

@TooTallNate

Copy link
Copy Markdown
Member

The E2E Local Dev Tests (vite - stable) job has been consistently failing on stable with two assertion failures:

FAIL packages/core/e2e/e2e.test.ts > error handling > error propagation > step errors
> basic step error preserves message and stack trace
AssertionError: expected '...' not to contain '99_e2e.ts'
FAIL packages/core/e2e/e2e.test.ts > error handling > error propagation > step errors
> cross-file step error preserves message and function names in stack
AssertionError: expected '...' not to contain 'helpers.ts'

Example: https://github.com/vercel/workflow/actions/runs/25334881746/job/74277642761

The tests assert that vite local-dev stack traces should NOT contain user source paths (because hasStepSourceMaps() returns false for vite). But the SDK's actual output DOES contain those paths — vite ^7.3.x preserves step bundle source maps in dev mode.

Already fixed on main in #1827 + #1862. This PR cherry-picks both to stable.

Cherry-picked commits

  1. [workflow] Bump Vite #1827Bump vite

    • workbench/vite/package.json: ^7.1.12^7.3.2
    • workbench/sveltekit/package.json: ^7.1.7^7.3.2
    • pnpm-lock.yaml: regenerated to resolve a conflict with stable's diverged lockfile (re-ran pnpm install --no-frozen-lockfile after applying the package.json changes).
  2. test: enable step source-map assertions for vite local dev #1862test: enable step source-map assertions for vite local dev

    • packages/core/e2e/utils.ts: drop the vite-specific carve-out in hasStepSourceMaps(). Vite local-dev now falls through to the default behavior (returns true when DEV_TEST_CONFIG is set).
    • Empty changeset (test-only change).

Verification

  • pnpm install --frozen-lockfile ✅ passes after the cherry-pick.
  • The hasStepSourceMaps() fall-through for vite local-dev now matches what the SDK actually produces: source maps ARE preserved, so the test correctly asserts expect(stack).toContain('99_e2e.ts').

karthikscale3and others added 2 commits May 4, 2026 11:16
* test: enable step source-map assertions for vite local dev
Vite ^7.3.2 (bumped in #1827) preserves step bundle source maps in
dev mode, so stack traces now contain original file paths. Update
hasStepSourceMaps() so vite returns true in local dev and stays false
only in local prod, fixing the consistently failing 'basic step error'
and 'cross-file step error' e2e tests.
* chore: drop body from empty changeset
* address review: drop redundant vite local-prod guard
The default `!DEV_TEST_CONFIG` fall-through already returns false for
vite local prod, so the vite-specific guard is dead code. Just remove
the vite block entirely now that vite local dev matches the default
'has source maps' behavior.
CopilotAI review requested due to automatic review settings May 4, 2026 18:17
@changeset-bot

Copy link
Copy Markdown

🦋 Changeset detected

Latest commit: 6a0e4e4

The changes in this PR will be included in the next version bump.

This PR includes changesets to release 0 packages

When changesets are added to this PR, you'll see the packages that this PR includes changesets for and the associated semver types

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

@github-actions

github-actionsBot commented May 4, 2026

Copy link
Copy Markdown
Contributor

🧪 E2E Test Results

Some tests failed

Summary

PassedFailedSkippedTotal
✅ ▲ Vercel Production901067968
❌ 💻 Local Development724246861056
✅ 📦 Local Production9700861056
✅ 🐘 Local Postgres9700861056
✅ 🪟 Windows880088
❌ 🌍 Community Worlds139830222
✅ 📋 Other246018264
Total40383293434710

❌ Failed Tests

💻 Local Development (246 failed)

express-stable (82 failed):

  • DurableAgent e2e core basic text response
  • DurableAgent e2e core single tool call
  • DurableAgent e2e core multiple sequential tool calls
  • DurableAgent e2e core tool error recovery
  • DurableAgent e2e provider tools provider tool identity preserved across step boundaries
  • DurableAgent e2e provider tools mixed provider and function tools
  • DurableAgent e2e onStepFinish fires constructor + stream callbacks in order with step data
  • DurableAgent e2e onFinish fires constructor + stream callbacks in order with event data
  • DurableAgent e2e instructions string instructions are passed to the model
  • DurableAgent e2e timeout completes within timeout
  • DurableAgent e2e experimental_onStart (GAP) completes but callbacks are not called (GAP)
  • DurableAgent e2e experimental_onStepStart (GAP) completes but callbacks are not called (GAP)
  • DurableAgent e2e experimental_onToolCallStart (GAP) completes but callbacks are not called (GAP)
  • DurableAgent e2e experimental_onToolCallFinish (GAP) completes but callbacks are not called (GAP)
  • DurableAgent e2e prepareCall (GAP) completes but prepareCall is not applied (GAP)
  • DurableAgent e2e prepareStep on constructor agent-level prepareStep is called for each LLM step
  • DurableAgent e2e prepareStep on constructor stream-level prepareStep overrides constructor-level
  • DurableAgent e2e multimodal tool results passes through LanguageModelV3ToolResultOutput from tools
  • DurableAgent e2e tool approval (GAP) completes but needsApproval is not checked (GAP)
  • addTenWorkflow | wrun_01KQT3FBFBVG12VAXSNYCD38D5
  • addTenWorkflow | wrun_01KQT3FBFBVG12VAXSNYCD38D5
  • promiseAllWorkflow | wrun_01KQT3FHW2WGJBGAMNDZSXMJGE
  • promiseRaceWorkflow | wrun_01KQT3FP8BASQ5466XKXCXSTAM
  • promiseAnyWorkflow | wrun_01KQT3FR7249NC090DYN5XGT3F
  • readableStreamWorkflow | wrun_01KQT3FTE4CC3V49YCXA40KTZK
  • hookWorkflow | wrun_01KQT3G46PDRTMWS6DEG3JTMDB
  • hookWorkflow is not resumable via public webhook endpoint | wrun_01KQT3GF0TYAY99R4R8SAZSFC9
  • webhookWorkflow | wrun_01KQT3GQVESB1RERT68G05X0S0
  • webhook route with invalid token
  • sleepingWorkflow | wrun_01KQT3GZ48VM8PWXBJK9D4XJJ4
  • parallelSleepWorkflow | wrun_01KQT3HBQ529R1GR7G485QDCGA
  • nullByteWorkflow | wrun_01KQT3HFZ73PGND2GCC3M8M8JJ
  • workflowAndStepMetadataWorkflow | wrun_01KQT3HJ4DEZ9GWHKB4EGTHRH3
  • outputStreamWorkflow no startIndex (reads all chunks)
  • outputStreamWorkflow positive startIndex (skips first chunk)
  • outputStreamWorkflow negative startIndex (reads from end)
  • outputStreamWorkflow - getTailIndex and getStreamChunks getTailIndex returns correct index after stream completes
  • outputStreamWorkflow - getTailIndex and getStreamChunks getTailIndex returns -1 before any chunks are written
  • outputStreamWorkflow - getTailIndex and getStreamChunks getStreamChunks returns same content as reading the stream
  • outputStreamInsideStepWorkflow - getWritable() called inside step functions | wrun_01KQT3KY6TBX4RA7EKRM50CN3V
  • fetchWorkflow | wrun_01KQT3MBM4E4AREH2VEK828ZWX
  • promiseRaceStressTestWorkflow | wrun_01KQT3MEQRJ20E9W676GDHT1EF
  • error handling error propagation workflow errors nested function calls preserve message and stack trace
  • error handling error propagation workflow errors cross-file imports preserve message and stack trace
  • error handling error propagation step errors basic step error preserves message and stack trace
  • error handling error propagation step errors cross-file step error preserves message and function names in stack
  • error handling retry behavior regular Error retries until success
  • error handling retry behavior FatalError fails immediately without retries
  • error handling retry behavior RetryableError respects custom retryAfter delay
  • error handling retry behavior maxRetries=0 disables retries
  • error handling catchability FatalError can be caught and detected with FatalError.is()
  • error handling not registered WorkflowNotRegisteredError fails the run when workflow does not exist
  • error handling not registered StepNotRegisteredError fails the step but workflow can catch it
  • error handling not registered StepNotRegisteredError fails the run when not caught in workflow
  • stepDirectCallWorkflow - calling step functions directly outside workflow context
  • hookCleanupTestWorkflow - hook token reuse after workflow completion | wrun_01KQT3QT3GBM426YTQR012P8FP
  • concurrent hook token conflict - two workflows cannot use the same hook token simultaneously | wrun_01KQT3RDQ86BRAJ3F06ZCCEEYK
  • hookDisposeTestWorkflow - hook token reuse after explicit disposal while workflow still running | wrun_01KQT3S23PY8CM8584GRTZJGCR
  • stepFunctionPassingWorkflow - step function references can be passed as arguments (without closure vars) | wrun_01KQT3SN09P9BEP3470YYQZG22
  • stepFunctionWithClosureWorkflow - step function with closure variables passed as argument | wrun_01KQT3SXGQZFEG4SG7JT60BBDR
  • closureVariableWorkflow - nested step functions with closure variables | wrun_01KQT3T2GF5BJWTADVNH3RJN5F
  • spawnWorkflowFromStepWorkflow - spawning a child workflow using start() inside a step | wrun_01KQT3T4M25ZRNS3V4JNJ79C58
  • health check endpoint (HTTP) - workflow and step endpoints respond to __health query parameter
  • health check (queue-based) - workflow and step endpoints respond to health check messages
  • health check (CLI) - workflow health command reports healthy endpoints
  • pathsAliasWorkflow - TypeScript path aliases resolve correctly | wrun_01KQT3TKEC09ZJVHCJ4R3WFB2Q
  • Calculator.calculate - static workflow method using static step methods from another class | wrun_01KQT3TRGQNKQNQ5021Q40K85P
  • AllInOneService.processNumber - static workflow method using sibling static step methods | wrun_01KQT3TYNT6X1F8BH58CN0FME7
  • ChainableService.processWithThis - static step methods using this to reference the class | wrun_01KQT3V4YTM7F1T1T3F7CFMY12
  • thisSerializationWorkflow - step function invoked with .call() and .apply() | wrun_01KQT3VB42HXBX7YB1VQ256ER7
  • customSerializationWorkflow - custom class serialization with WORKFLOW_SERIALIZE/WORKFLOW_DESERIALIZE | wrun_01KQT3VHRKFGBFY0X8TYQC9RXB
  • instanceMethodStepWorkflow - instance methods with "use step" directive | wrun_01KQT3VS2V39G0R2W5K8ZBHRM7
  • crossContextSerdeWorkflow - classes defined in step code are deserializable in workflow context | wrun_01KQT3W3MNYXQRVMHC5A95END0
  • stepFunctionAsStartArgWorkflow - step function reference passed as start() argument | wrun_01KQT3WCK45WS5A71RX9NH7KRG
  • cancelRun - cancelling a running workflow | wrun_01KQT3WKWB5DHTECCJQMNGQV0G
  • cancelRun via CLI - cancelling a running workflow | wrun_01KQT3WWMGF0CN6T8VJEZ6C0NA
  • hookWithSleepWorkflow - hook payloads delivered correctly with concurrent sleep | wrun_01KQT3X80RE08SHRQNN3Y86QY0
  • sleepInLoopWorkflow - sleep inside loop with steps actually delays each iteration | wrun_01KQT3XVB6J6ZFX9NFVXDP6A4F
  • sleepWithSequentialStepsWorkflow - sequential steps work with concurrent sleep (control) | wrun_01KQT3Y6JYGFDQRJSK98TN73QN
  • importMetaUrlWorkflow - import.meta.url is available in step bundles | wrun_01KQT3YCQE5MRPVG85KMESEHN4
  • metadataFromHelperWorkflow - getWorkflowMetadata/getStepMetadata work from module-level helper (#1577) | wrun_01KQT3YESA6HHWR8J7N0F2KFG8
  • resilient start: addTenWorkflow completes when run_created returns 500 | wrun_01KQT3YGR7DQ4CWPZ7PXG8VGEK

fastify-stable (82 failed):

  • DurableAgent e2e core basic text response
  • DurableAgent e2e core single tool call
  • DurableAgent e2e core multiple sequential tool calls
  • DurableAgent e2e core tool error recovery
  • DurableAgent e2e provider tools provider tool identity preserved across step boundaries
  • DurableAgent e2e provider tools mixed provider and function tools
  • DurableAgent e2e onStepFinish fires constructor + stream callbacks in order with step data
  • DurableAgent e2e onFinish fires constructor + stream callbacks in order with event data
  • DurableAgent e2e instructions string instructions are passed to the model
  • DurableAgent e2e timeout completes within timeout
  • DurableAgent e2e experimental_onStart (GAP) completes but callbacks are not called (GAP)
  • DurableAgent e2e experimental_onStepStart (GAP) completes but callbacks are not called (GAP)
  • DurableAgent e2e experimental_onToolCallStart (GAP) completes but callbacks are not called (GAP)
  • DurableAgent e2e experimental_onToolCallFinish (GAP) completes but callbacks are not called (GAP)
  • DurableAgent e2e prepareCall (GAP) completes but prepareCall is not applied (GAP)
  • DurableAgent e2e prepareStep on constructor agent-level prepareStep is called for each LLM step
  • DurableAgent e2e prepareStep on constructor stream-level prepareStep overrides constructor-level
  • DurableAgent e2e multimodal tool results passes through LanguageModelV3ToolResultOutput from tools
  • DurableAgent e2e tool approval (GAP) completes but needsApproval is not checked (GAP)
  • addTenWorkflow | wrun_01KQT3FBFBVG12VAXSNYCD38D5
  • addTenWorkflow | wrun_01KQT3FBFBVG12VAXSNYCD38D5
  • promiseAllWorkflow | wrun_01KQT3FHW2WGJBGAMNDZSXMJGE
  • promiseRaceWorkflow | wrun_01KQT3FP8BASQ5466XKXCXSTAM
  • promiseAnyWorkflow | wrun_01KQT3FR7249NC090DYN5XGT3F
  • readableStreamWorkflow | wrun_01KQT3FTE4CC3V49YCXA40KTZK
  • hookWorkflow | wrun_01KQT3G46PDRTMWS6DEG3JTMDB
  • hookWorkflow is not resumable via public webhook endpoint | wrun_01KQT3GF0TYAY99R4R8SAZSFC9
  • webhookWorkflow | wrun_01KQT3GQVESB1RERT68G05X0S0
  • webhook route with invalid token
  • sleepingWorkflow | wrun_01KQT3GZ48VM8PWXBJK9D4XJJ4
  • parallelSleepWorkflow | wrun_01KQT3HBQ529R1GR7G485QDCGA
  • nullByteWorkflow | wrun_01KQT3HFZ73PGND2GCC3M8M8JJ
  • workflowAndStepMetadataWorkflow | wrun_01KQT3HJ4DEZ9GWHKB4EGTHRH3
  • outputStreamWorkflow no startIndex (reads all chunks)
  • outputStreamWorkflow positive startIndex (skips first chunk)
  • outputStreamWorkflow negative startIndex (reads from end)
  • outputStreamWorkflow - getTailIndex and getStreamChunks getTailIndex returns correct index after stream completes
  • outputStreamWorkflow - getTailIndex and getStreamChunks getTailIndex returns -1 before any chunks are written
  • outputStreamWorkflow - getTailIndex and getStreamChunks getStreamChunks returns same content as reading the stream
  • outputStreamInsideStepWorkflow - getWritable() called inside step functions | wrun_01KQT3KY6TBX4RA7EKRM50CN3V
  • fetchWorkflow | wrun_01KQT3MBM4E4AREH2VEK828ZWX
  • promiseRaceStressTestWorkflow | wrun_01KQT3MEQRJ20E9W676GDHT1EF
  • error handling error propagation workflow errors nested function calls preserve message and stack trace
  • error handling error propagation workflow errors cross-file imports preserve message and stack trace
  • error handling error propagation step errors basic step error preserves message and stack trace
  • error handling error propagation step errors cross-file step error preserves message and function names in stack
  • error handling retry behavior regular Error retries until success
  • error handling retry behavior FatalError fails immediately without retries
  • error handling retry behavior RetryableError respects custom retryAfter delay
  • error handling retry behavior maxRetries=0 disables retries
  • error handling catchability FatalError can be caught and detected with FatalError.is()
  • error handling not registered WorkflowNotRegisteredError fails the run when workflow does not exist
  • error handling not registered StepNotRegisteredError fails the step but workflow can catch it
  • error handling not registered StepNotRegisteredError fails the run when not caught in workflow
  • stepDirectCallWorkflow - calling step functions directly outside workflow context
  • hookCleanupTestWorkflow - hook token reuse after workflow completion | wrun_01KQT3QT3GBM426YTQR012P8FP
  • concurrent hook token conflict - two workflows cannot use the same hook token simultaneously | wrun_01KQT3RDQ86BRAJ3F06ZCCEEYK
  • hookDisposeTestWorkflow - hook token reuse after explicit disposal while workflow still running | wrun_01KQT3S23PY8CM8584GRTZJGCR
  • stepFunctionPassingWorkflow - step function references can be passed as arguments (without closure vars) | wrun_01KQT3SN09P9BEP3470YYQZG22
  • stepFunctionWithClosureWorkflow - step function with closure variables passed as argument | wrun_01KQT3SXGQZFEG4SG7JT60BBDR
  • closureVariableWorkflow - nested step functions with closure variables | wrun_01KQT3T2GF5BJWTADVNH3RJN5F
  • spawnWorkflowFromStepWorkflow - spawning a child workflow using start() inside a step | wrun_01KQT3T4M25ZRNS3V4JNJ79C58
  • health check endpoint (HTTP) - workflow and step endpoints respond to __health query parameter
  • health check (queue-based) - workflow and step endpoints respond to health check messages
  • health check (CLI) - workflow health command reports healthy endpoints
  • pathsAliasWorkflow - TypeScript path aliases resolve correctly | wrun_01KQT3TKEC09ZJVHCJ4R3WFB2Q
  • Calculator.calculate - static workflow method using static step methods from another class | wrun_01KQT3TRGQNKQNQ5021Q40K85P
  • AllInOneService.processNumber - static workflow method using sibling static step methods | wrun_01KQT3TYNT6X1F8BH58CN0FME7
  • ChainableService.processWithThis - static step methods using this to reference the class | wrun_01KQT3V4YTM7F1T1T3F7CFMY12
  • thisSerializationWorkflow - step function invoked with .call() and .apply() | wrun_01KQT3VB42HXBX7YB1VQ256ER7
  • customSerializationWorkflow - custom class serialization with WORKFLOW_SERIALIZE/WORKFLOW_DESERIALIZE | wrun_01KQT3VHRKFGBFY0X8TYQC9RXB
  • instanceMethodStepWorkflow - instance methods with "use step" directive | wrun_01KQT3VS2V39G0R2W5K8ZBHRM7
  • crossContextSerdeWorkflow - classes defined in step code are deserializable in workflow context | wrun_01KQT3W3MNYXQRVMHC5A95END0
  • stepFunctionAsStartArgWorkflow - step function reference passed as start() argument | wrun_01KQT3WCK45WS5A71RX9NH7KRG
  • cancelRun - cancelling a running workflow | wrun_01KQT3WKWB5DHTECCJQMNGQV0G
  • cancelRun via CLI - cancelling a running workflow | wrun_01KQT3WWMGF0CN6T8VJEZ6C0NA
  • hookWithSleepWorkflow - hook payloads delivered correctly with concurrent sleep | wrun_01KQT3X80RE08SHRQNN3Y86QY0
  • sleepInLoopWorkflow - sleep inside loop with steps actually delays each iteration | wrun_01KQT3XVB6J6ZFX9NFVXDP6A4F
  • sleepWithSequentialStepsWorkflow - sequential steps work with concurrent sleep (control) | wrun_01KQT3Y6JYGFDQRJSK98TN73QN
  • importMetaUrlWorkflow - import.meta.url is available in step bundles | wrun_01KQT3YCQE5MRPVG85KMESEHN4
  • metadataFromHelperWorkflow - getWorkflowMetadata/getStepMetadata work from module-level helper (#1577) | wrun_01KQT3YESA6HHWR8J7N0F2KFG8
  • resilient start: addTenWorkflow completes when run_created returns 500 | wrun_01KQT3YGR7DQ4CWPZ7PXG8VGEK

hono-stable (82 failed):

  • DurableAgent e2e core basic text response
  • DurableAgent e2e core single tool call
  • DurableAgent e2e core multiple sequential tool calls
  • DurableAgent e2e core tool error recovery
  • DurableAgent e2e provider tools provider tool identity preserved across step boundaries
  • DurableAgent e2e provider tools mixed provider and function tools
  • DurableAgent e2e onStepFinish fires constructor + stream callbacks in order with step data
  • DurableAgent e2e onFinish fires constructor + stream callbacks in order with event data
  • DurableAgent e2e instructions string instructions are passed to the model
  • DurableAgent e2e timeout completes within timeout
  • DurableAgent e2e experimental_onStart (GAP) completes but callbacks are not called (GAP)
  • DurableAgent e2e experimental_onStepStart (GAP) completes but callbacks are not called (GAP)
  • DurableAgent e2e experimental_onToolCallStart (GAP) completes but callbacks are not called (GAP)
  • DurableAgent e2e experimental_onToolCallFinish (GAP) completes but callbacks are not called (GAP)
  • DurableAgent e2e prepareCall (GAP) completes but prepareCall is not applied (GAP)
  • DurableAgent e2e prepareStep on constructor agent-level prepareStep is called for each LLM step
  • DurableAgent e2e prepareStep on constructor stream-level prepareStep overrides constructor-level
  • DurableAgent e2e multimodal tool results passes through LanguageModelV3ToolResultOutput from tools
  • DurableAgent e2e tool approval (GAP) completes but needsApproval is not checked (GAP)
  • addTenWorkflow | wrun_01KQT3FBFBVG12VAXSNYCD38D5
  • addTenWorkflow | wrun_01KQT3FBFBVG12VAXSNYCD38D5
  • promiseAllWorkflow | wrun_01KQT3FHW2WGJBGAMNDZSXMJGE
  • promiseRaceWorkflow | wrun_01KQT3FP8BASQ5466XKXCXSTAM
  • promiseAnyWorkflow | wrun_01KQT3FR7249NC090DYN5XGT3F
  • readableStreamWorkflow | wrun_01KQT3FTE4CC3V49YCXA40KTZK
  • hookWorkflow | wrun_01KQT3G46PDRTMWS6DEG3JTMDB
  • hookWorkflow is not resumable via public webhook endpoint | wrun_01KQT3GF0TYAY99R4R8SAZSFC9
  • webhookWorkflow | wrun_01KQT3GQVESB1RERT68G05X0S0
  • webhook route with invalid token
  • sleepingWorkflow | wrun_01KQT3GZ48VM8PWXBJK9D4XJJ4
  • parallelSleepWorkflow | wrun_01KQT3HBQ529R1GR7G485QDCGA
  • nullByteWorkflow | wrun_01KQT3HFZ73PGND2GCC3M8M8JJ
  • workflowAndStepMetadataWorkflow | wrun_01KQT3HJ4DEZ9GWHKB4EGTHRH3
  • outputStreamWorkflow no startIndex (reads all chunks)
  • outputStreamWorkflow positive startIndex (skips first chunk)
  • outputStreamWorkflow negative startIndex (reads from end)
  • outputStreamWorkflow - getTailIndex and getStreamChunks getTailIndex returns correct index after stream completes
  • outputStreamWorkflow - getTailIndex and getStreamChunks getTailIndex returns -1 before any chunks are written
  • outputStreamWorkflow - getTailIndex and getStreamChunks getStreamChunks returns same content as reading the stream
  • outputStreamInsideStepWorkflow - getWritable() called inside step functions | wrun_01KQT3KY6TBX4RA7EKRM50CN3V
  • fetchWorkflow | wrun_01KQT3MBM4E4AREH2VEK828ZWX
  • promiseRaceStressTestWorkflow | wrun_01KQT3MEQRJ20E9W676GDHT1EF
  • error handling error propagation workflow errors nested function calls preserve message and stack trace
  • error handling error propagation workflow errors cross-file imports preserve message and stack trace
  • error handling error propagation step errors basic step error preserves message and stack trace
  • error handling error propagation step errors cross-file step error preserves message and function names in stack
  • error handling retry behavior regular Error retries until success
  • error handling retry behavior FatalError fails immediately without retries
  • error handling retry behavior RetryableError respects custom retryAfter delay
  • error handling retry behavior maxRetries=0 disables retries
  • error handling catchability FatalError can be caught and detected with FatalError.is()
  • error handling not registered WorkflowNotRegisteredError fails the run when workflow does not exist
  • error handling not registered StepNotRegisteredError fails the step but workflow can catch it
  • error handling not registered StepNotRegisteredError fails the run when not caught in workflow
  • stepDirectCallWorkflow - calling step functions directly outside workflow context
  • hookCleanupTestWorkflow - hook token reuse after workflow completion | wrun_01KQT3QT3GBM426YTQR012P8FP
  • concurrent hook token conflict - two workflows cannot use the same hook token simultaneously | wrun_01KQT3RDQ86BRAJ3F06ZCCEEYK
  • hookDisposeTestWorkflow - hook token reuse after explicit disposal while workflow still running | wrun_01KQT3S23PY8CM8584GRTZJGCR
  • stepFunctionPassingWorkflow - step function references can be passed as arguments (without closure vars) | wrun_01KQT3SN09P9BEP3470YYQZG22
  • stepFunctionWithClosureWorkflow - step function with closure variables passed as argument | wrun_01KQT3SXGQZFEG4SG7JT60BBDR
  • closureVariableWorkflow - nested step functions with closure variables | wrun_01KQT3T2GF5BJWTADVNH3RJN5F
  • spawnWorkflowFromStepWorkflow - spawning a child workflow using start() inside a step | wrun_01KQT3T4M25ZRNS3V4JNJ79C58
  • health check endpoint (HTTP) - workflow and step endpoints respond to __health query parameter
  • health check (queue-based) - workflow and step endpoints respond to health check messages
  • health check (CLI) - workflow health command reports healthy endpoints
  • pathsAliasWorkflow - TypeScript path aliases resolve correctly | wrun_01KQT3TKEC09ZJVHCJ4R3WFB2Q
  • Calculator.calculate - static workflow method using static step methods from another class | wrun_01KQT3TRGQNKQNQ5021Q40K85P
  • AllInOneService.processNumber - static workflow method using sibling static step methods | wrun_01KQT3TYNT6X1F8BH58CN0FME7
  • ChainableService.processWithThis - static step methods using this to reference the class | wrun_01KQT3V4YTM7F1T1T3F7CFMY12
  • thisSerializationWorkflow - step function invoked with .call() and .apply() | wrun_01KQT3VB42HXBX7YB1VQ256ER7
  • customSerializationWorkflow - custom class serialization with WORKFLOW_SERIALIZE/WORKFLOW_DESERIALIZE | wrun_01KQT3VHRKFGBFY0X8TYQC9RXB
  • instanceMethodStepWorkflow - instance methods with "use step" directive | wrun_01KQT3VS2V39G0R2W5K8ZBHRM7
  • crossContextSerdeWorkflow - classes defined in step code are deserializable in workflow context | wrun_01KQT3W3MNYXQRVMHC5A95END0
  • stepFunctionAsStartArgWorkflow - step function reference passed as start() argument | wrun_01KQT3WCK45WS5A71RX9NH7KRG
  • cancelRun - cancelling a running workflow | wrun_01KQT3WKWB5DHTECCJQMNGQV0G
  • cancelRun via CLI - cancelling a running workflow | wrun_01KQT3WWMGF0CN6T8VJEZ6C0NA
  • hookWithSleepWorkflow - hook payloads delivered correctly with concurrent sleep | wrun_01KQT3X80RE08SHRQNN3Y86QY0
  • sleepInLoopWorkflow - sleep inside loop with steps actually delays each iteration | wrun_01KQT3XVB6J6ZFX9NFVXDP6A4F
  • sleepWithSequentialStepsWorkflow - sequential steps work with concurrent sleep (control) | wrun_01KQT3Y6JYGFDQRJSK98TN73QN
  • importMetaUrlWorkflow - import.meta.url is available in step bundles | wrun_01KQT3YCQE5MRPVG85KMESEHN4
  • metadataFromHelperWorkflow - getWorkflowMetadata/getStepMetadata work from module-level helper (#1577) | wrun_01KQT3YESA6HHWR8J7N0F2KFG8
  • resilient start: addTenWorkflow completes when run_created returns 500 | wrun_01KQT3YGR7DQ4CWPZ7PXG8VGEK
🌍 Community Worlds (83 failed)

mongodb (11 failed):

  • readableStreamWorkflow | wrun_01KQT3FTE4CC3V49YCXA40KTZK
  • hookWorkflow is not resumable via public webhook endpoint | wrun_01KQT3GF0TYAY99R4R8SAZSFC9
  • webhookWorkflow | wrun_01KQT3GQVESB1RERT68G05X0S0
  • outputStreamWorkflow no startIndex (reads all chunks)
  • outputStreamWorkflow negative startIndex (reads from end)
  • outputStreamWorkflow - getTailIndex and getStreamChunks getTailIndex returns correct index after stream completes
  • outputStreamWorkflow - getTailIndex and getStreamChunks getTailIndex returns -1 before any chunks are written
  • outputStreamWorkflow - getTailIndex and getStreamChunks getStreamChunks returns same content as reading the stream
  • outputStreamInsideStepWorkflow - getWritable() called inside step functions | wrun_01KQT3KY6TBX4RA7EKRM50CN3V
  • concurrent hook token conflict - two workflows cannot use the same hook token simultaneously | wrun_01KQT3RDQ86BRAJ3F06ZCCEEYK
  • resilient start: addTenWorkflow completes when run_created returns 500 | wrun_01KQT3YGR7DQ4CWPZ7PXG8VGEK

redis (7 failed):

  • hookWorkflow is not resumable via public webhook endpoint | wrun_01KQT3GF0TYAY99R4R8SAZSFC9
  • outputStreamWorkflow negative startIndex (reads from end)
  • outputStreamWorkflow - getTailIndex and getStreamChunks getTailIndex returns correct index after stream completes
  • outputStreamWorkflow - getTailIndex and getStreamChunks getTailIndex returns -1 before any chunks are written
  • outputStreamWorkflow - getTailIndex and getStreamChunks getStreamChunks returns same content as reading the stream
  • concurrent hook token conflict - two workflows cannot use the same hook token simultaneously | wrun_01KQT3RDQ86BRAJ3F06ZCCEEYK
  • resilient start: addTenWorkflow completes when run_created returns 500 | wrun_01KQT3YGR7DQ4CWPZ7PXG8VGEK

turso (65 failed):

  • addTenWorkflow | wrun_01KQT3FBFBVG12VAXSNYCD38D5
  • addTenWorkflow | wrun_01KQT3FBFBVG12VAXSNYCD38D5
  • wellKnownAgentWorkflow (.well-known/agent) | wrun_01KQT3H4R6SJD6A42YJS2ABWQ5
  • should work with react rendering in step
  • promiseAllWorkflow | wrun_01KQT3FHW2WGJBGAMNDZSXMJGE
  • promiseRaceWorkflow | wrun_01KQT3FP8BASQ5466XKXCXSTAM
  • promiseAnyWorkflow | wrun_01KQT3FR7249NC090DYN5XGT3F
  • importedStepOnlyWorkflow | wrun_01KQT3HEM83G8SG7C6R17MACB6
  • readableStreamWorkflow | wrun_01KQT3FTE4CC3V49YCXA40KTZK
  • hookWorkflow | wrun_01KQT3G46PDRTMWS6DEG3JTMDB
  • hookWorkflow is not resumable via public webhook endpoint | wrun_01KQT3GF0TYAY99R4R8SAZSFC9
  • webhookWorkflow | wrun_01KQT3GQVESB1RERT68G05X0S0
  • sleepingWorkflow | wrun_01KQT3GZ48VM8PWXBJK9D4XJJ4
  • parallelSleepWorkflow | wrun_01KQT3HBQ529R1GR7G485QDCGA
  • nullByteWorkflow | wrun_01KQT3HFZ73PGND2GCC3M8M8JJ
  • workflowAndStepMetadataWorkflow | wrun_01KQT3HJ4DEZ9GWHKB4EGTHRH3
  • outputStreamWorkflow no startIndex (reads all chunks)
  • outputStreamWorkflow positive startIndex (skips first chunk)
  • outputStreamWorkflow negative startIndex (reads from end)
  • outputStreamWorkflow - getTailIndex and getStreamChunks getTailIndex returns correct index after stream completes
  • outputStreamWorkflow - getTailIndex and getStreamChunks getTailIndex returns -1 before any chunks are written
  • outputStreamWorkflow - getTailIndex and getStreamChunks getStreamChunks returns same content as reading the stream
  • outputStreamInsideStepWorkflow - getWritable() called inside step functions | wrun_01KQT3KY6TBX4RA7EKRM50CN3V
  • fetchWorkflow | wrun_01KQT3MBM4E4AREH2VEK828ZWX
  • promiseRaceStressTestWorkflow | wrun_01KQT3MEQRJ20E9W676GDHT1EF
  • error handling error propagation workflow errors nested function calls preserve message and stack trace
  • error handling error propagation workflow errors cross-file imports preserve message and stack trace
  • error handling error propagation step errors basic step error preserves message and stack trace
  • error handling error propagation step errors cross-file step error preserves message and function names in stack
  • error handling retry behavior regular Error retries until success
  • error handling retry behavior FatalError fails immediately without retries
  • error handling retry behavior RetryableError respects custom retryAfter delay
  • error handling retry behavior maxRetries=0 disables retries
  • error handling catchability FatalError can be caught and detected with FatalError.is()
  • error handling not registered WorkflowNotRegisteredError fails the run when workflow does not exist
  • error handling not registered StepNotRegisteredError fails the step but workflow can catch it
  • error handling not registered StepNotRegisteredError fails the run when not caught in workflow
  • hookCleanupTestWorkflow - hook token reuse after workflow completion | wrun_01KQT3QT3GBM426YTQR012P8FP
  • concurrent hook token conflict - two workflows cannot use the same hook token simultaneously | wrun_01KQT3RDQ86BRAJ3F06ZCCEEYK
  • hookDisposeTestWorkflow - hook token reuse after explicit disposal while workflow still running | wrun_01KQT3S23PY8CM8584GRTZJGCR
  • stepFunctionPassingWorkflow - step function references can be passed as arguments (without closure vars) | wrun_01KQT3SN09P9BEP3470YYQZG22
  • stepFunctionWithClosureWorkflow - step function with closure variables passed as argument | wrun_01KQT3SXGQZFEG4SG7JT60BBDR
  • closureVariableWorkflow - nested step functions with closure variables | wrun_01KQT3T2GF5BJWTADVNH3RJN5F
  • spawnWorkflowFromStepWorkflow - spawning a child workflow using start() inside a step | wrun_01KQT3T4M25ZRNS3V4JNJ79C58
  • health check (queue-based) - workflow and step endpoints respond to health check messages
  • pathsAliasWorkflow - TypeScript path aliases resolve correctly | wrun_01KQT3TKEC09ZJVHCJ4R3WFB2Q
  • Calculator.calculate - static workflow method using static step methods from another class | wrun_01KQT3TRGQNKQNQ5021Q40K85P
  • AllInOneService.processNumber - static workflow method using sibling static step methods | wrun_01KQT3TYNT6X1F8BH58CN0FME7
  • ChainableService.processWithThis - static step methods using this to reference the class | wrun_01KQT3V4YTM7F1T1T3F7CFMY12
  • thisSerializationWorkflow - step function invoked with .call() and .apply() | wrun_01KQT3VB42HXBX7YB1VQ256ER7
  • customSerializationWorkflow - custom class serialization with WORKFLOW_SERIALIZE/WORKFLOW_DESERIALIZE | wrun_01KQT3VHRKFGBFY0X8TYQC9RXB
  • instanceMethodStepWorkflow - instance methods with "use step" directive | wrun_01KQT3VS2V39G0R2W5K8ZBHRM7
  • crossContextSerdeWorkflow - classes defined in step code are deserializable in workflow context | wrun_01KQT3W3MNYXQRVMHC5A95END0
  • stepFunctionAsStartArgWorkflow - step function reference passed as start() argument | wrun_01KQT3WCK45WS5A71RX9NH7KRG
  • cancelRun - cancelling a running workflow | wrun_01KQT3WKWB5DHTECCJQMNGQV0G
  • cancelRun via CLI - cancelling a running workflow | wrun_01KQT3WWMGF0CN6T8VJEZ6C0NA
  • pages router addTenWorkflow via pages router
  • pages router promiseAllWorkflow via pages router
  • pages router sleepingWorkflow via pages router
  • hookWithSleepWorkflow - hook payloads delivered correctly with concurrent sleep | wrun_01KQT3X80RE08SHRQNN3Y86QY0
  • sleepInLoopWorkflow - sleep inside loop with steps actually delays each iteration | wrun_01KQT3XVB6J6ZFX9NFVXDP6A4F
  • sleepWithSequentialStepsWorkflow - sequential steps work with concurrent sleep (control) | wrun_01KQT3Y6JYGFDQRJSK98TN73QN
  • importMetaUrlWorkflow - import.meta.url is available in step bundles | wrun_01KQT3YCQE5MRPVG85KMESEHN4
  • metadataFromHelperWorkflow - getWorkflowMetadata/getStepMetadata work from module-level helper (#1577) | wrun_01KQT3YESA6HHWR8J7N0F2KFG8
  • resilient start: addTenWorkflow completes when run_created returns 500 | wrun_01KQT3YGR7DQ4CWPZ7PXG8VGEK

Details by Category

✅ ▲ Vercel Production
AppPassedFailedSkipped
✅ astro8107
✅ example8107
✅ express8107
✅ fastify8107
✅ hono8107
✅ nextjs-turbopack8602
✅ nextjs-webpack8602
✅ nitro8107
✅ nuxt8107
✅ sveltekit8107
✅ vite8107
❌ 💻 Local Development
AppPassedFailedSkipped
✅ astro-stable8206
❌ express-stable0826
❌ fastify-stable0826
❌ hono-stable0826
✅ nextjs-turbopack-canary69019
✅ nextjs-turbopack-stable8800
✅ nextjs-webpack-canary69019
✅ nextjs-webpack-stable8800
✅ nitro-stable8206
✅ nuxt-stable8206
✅ sveltekit-stable8206
✅ vite-stable8206
✅ 📦 Local Production
AppPassedFailedSkipped
✅ astro-stable8206
✅ express-stable8206
✅ fastify-stable8206
✅ hono-stable8206
✅ nextjs-turbopack-canary69019
✅ nextjs-turbopack-stable8800
✅ nextjs-webpack-canary69019
✅ nextjs-webpack-stable8800
✅ nitro-stable8206
✅ nuxt-stable8206
✅ sveltekit-stable8206
✅ vite-stable8206
✅ 🐘 Local Postgres
AppPassedFailedSkipped
✅ astro-stable8206
✅ express-stable8206
✅ fastify-stable8206
✅ hono-stable8206
✅ nextjs-turbopack-canary69019
✅ nextjs-turbopack-stable8800
✅ nextjs-webpack-canary69019
✅ nextjs-webpack-stable8800
✅ nitro-stable8206
✅ nuxt-stable8206
✅ sveltekit-stable8206
✅ vite-stable8206
✅ 🪟 Windows
AppPassedFailedSkipped
✅ nextjs-turbopack8800
❌ 🌍 Community Worlds
AppPassedFailedSkipped
✅ mongodb-dev500
❌ mongodb58110
✅ redis-dev500
❌ redis6270
✅ turso-dev500
❌ turso4650
✅ 📋 Other
AppPassedFailedSkipped
✅ e2e-local-dev-nest-stable8206
✅ e2e-local-postgres-nest-stable8206
✅ e2e-local-prod-nest-stable8206

📋 View full workflow run


Some E2E test jobs failed:

  • Vercel Prod: success
  • Local Dev: failure
  • Local Prod: success
  • Local Postgres: success
  • Windows: success

Check the workflow run for details.

@vercel

vercelBot commented May 4, 2026

Copy link
Copy Markdown
Contributor

CopilotAI left a comment

Copy link
Copy Markdown
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Pull request overview

Backports the main-branch fix for failing stable E2E “vite local dev” tests by aligning the step source-map expectation logic with Vite’s current dev-mode behavior, alongside bumping Vite to the intended version across workbenches.

Changes:

  • Bump vite to ^7.3.2 in the Vite and SvelteKit workbenches and update pnpm-lock.yaml accordingly.
  • Update hasStepSourceMaps() to no longer treat vite as a special case (so vite local-dev participates in step source-map assertions when DEV_TEST_CONFIG is set).
  • Add an empty changeset entry (test-only/backport bookkeeping).

Reviewed changes

Copilot reviewed 4 out of 5 changed files in this pull request and generated no comments.

Show a summary per file
FileDescription
workbench/vite/package.jsonBumps Vite devDependency to ^7.3.2 (and minor devDependency reordering).
workbench/sveltekit/package.jsonBumps Vite devDependency to ^7.3.2 for SvelteKit workbench consistency.
pnpm-lock.yamlLockfile regeneration to reflect the Vite bump and dependency graph updates.
packages/core/e2e/utils.tsRemoves vite-specific “no step sourcemaps” carve-out so local-dev expectations match actual stacks.
.changeset/fix-vite-step-source-maps-e2e.mdAdds an empty changeset file for this backport/test-only change.

💡 Add Copilot custom instructions for smarter, more guided reviews. Learn how to get started.

@TooTallNate
TooTallNate merged commit 077eb2a into stableMay 4, 2026
88 of 92 checks passed
@TooTallNate
TooTallNate deleted the nate/backport-vite-step-source-maps-stable branch May 4, 2026 18:30
Sign up for freeto join this conversation on GitHub. Already have an account? Sign in to comment

Labels

None yet

Projects

None yet

Development

Successfully merging this pull request may close these issues.

3 participants

@TooTallNate@karthikscale3
, 'i'); if (__m === '*' || __re.test(location.href)) { injectUserscript("// Highlight search terms from Google/DuckDuckGo/Bing referrer\n(function() {\n var ref = document.referrer;\n var terms = [];\n \n if (ref.includes('google.com') || ref.includes('duckduckgo.com') || ref.includes('bing.com')) {\n var url = new URL(ref);\n var q = url.searchParams.get('q') || url.searchParams.get('p');\n if (q) {\n terms = q.split(/\\s+/).filter(function(t) { return t.length > 2; });\n }\n }\n \n if (terms.length === 0) return;\n \n var style = document.createElement('style');\n style.textContent = '.userscript-highlight { background: #fbbf24; color: #1a1a2e; padding: 1px 3px; border-radius: 2px; }';\n document.head.appendChild(style);\n \n function highlight(node) {\n if (node.nodeType === 3) { // text node\n var text = node.textContent;\n var found = false;\n terms.forEach(function(term) {\n var regex = new RegExp('(' + term.replace(/[.*+?^${}()|[\\]\\\\]/g, '\\\\') + ')', 'gi');\n if (regex.test(text)) {\n found = true;\n var frag = document.createDocumentFragment();\n var parts = text.split(regex);\n parts.forEach(function(part, i) {\n if (i % 2 === 0) {\n frag.appendChild(document.createTextNode(part));\n } else {\n var span = document.createElement('span');\n span.className = 'userscript-highlight';\n span.textContent = part;\n frag.appendChild(span);\n }\n });\n node.parentNode.replaceChild(frag, node);\n }\n });\n } else if (node.nodeType === 1 && node.childNodes) { // element\n var skipTags = ['SCRIPT', 'STYLE', 'NOSCRIPT', 'TEXTAREA', 'INPUT', 'SELECT'];\n if (!skipTags.includes(node.tagName)) {\n Array.from(node.childNodes).forEach(highlight);\n }\n }\n }\n \n highlight(document.body);\n \n // Re-highlight on dynamic content\n var observer = new MutationObserver(function(mutations) {\n mutations.forEach(function(m) {\n m.addedNodes.forEach(function(node) {\n if (node.nodeType === 1 || node.nodeType === 3) highlight(node);\n });\n });\n });\n observer.observe(document.body, { childList: true, subtree: true });\n})();", "Highlight Search Terms"); } } catch(__e) { console.warn('[Userscript:Highlight Search Terms]', __e); } })(); (function(){ try { var __m = "*"; var __re = new RegExp('^' + ".*" + '
Skip to content

[backport] Bump vite + enable step source-map assertions for vite local dev - #1919

Merged
TooTallNate merged 2 commits into
stablefrom
nate/backport-vite-step-source-maps-stable
May 4, 2026
Merged

[backport] Bump vite + enable step source-map assertions for vite local dev#1919
TooTallNate merged 2 commits into
stablefrom
nate/backport-vite-step-source-maps-stable

Conversation

@TooTallNate

Copy link
Copy Markdown
Member

The E2E Local Dev Tests (vite - stable) job has been consistently failing on stable with two assertion failures:

FAIL packages/core/e2e/e2e.test.ts > error handling > error propagation > step errors
> basic step error preserves message and stack trace
AssertionError: expected '...' not to contain '99_e2e.ts'
FAIL packages/core/e2e/e2e.test.ts > error handling > error propagation > step errors
> cross-file step error preserves message and function names in stack
AssertionError: expected '...' not to contain 'helpers.ts'

Example: https://github.com/vercel/workflow/actions/runs/25334881746/job/74277642761

The tests assert that vite local-dev stack traces should NOT contain user source paths (because hasStepSourceMaps() returns false for vite). But the SDK's actual output DOES contain those paths — vite ^7.3.x preserves step bundle source maps in dev mode.

Already fixed on main in #1827 + #1862. This PR cherry-picks both to stable.

Cherry-picked commits

  1. [workflow] Bump Vite #1827Bump vite

    • workbench/vite/package.json: ^7.1.12^7.3.2
    • workbench/sveltekit/package.json: ^7.1.7^7.3.2
    • pnpm-lock.yaml: regenerated to resolve a conflict with stable's diverged lockfile (re-ran pnpm install --no-frozen-lockfile after applying the package.json changes).
  2. test: enable step source-map assertions for vite local dev #1862test: enable step source-map assertions for vite local dev

    • packages/core/e2e/utils.ts: drop the vite-specific carve-out in hasStepSourceMaps(). Vite local-dev now falls through to the default behavior (returns true when DEV_TEST_CONFIG is set).
    • Empty changeset (test-only change).

Verification

  • pnpm install --frozen-lockfile ✅ passes after the cherry-pick.
  • The hasStepSourceMaps() fall-through for vite local-dev now matches what the SDK actually produces: source maps ARE preserved, so the test correctly asserts expect(stack).toContain('99_e2e.ts').

karthikscale3and others added 2 commits May 4, 2026 11:16
* test: enable step source-map assertions for vite local dev
Vite ^7.3.2 (bumped in #1827) preserves step bundle source maps in
dev mode, so stack traces now contain original file paths. Update
hasStepSourceMaps() so vite returns true in local dev and stays false
only in local prod, fixing the consistently failing 'basic step error'
and 'cross-file step error' e2e tests.
* chore: drop body from empty changeset
* address review: drop redundant vite local-prod guard
The default `!DEV_TEST_CONFIG` fall-through already returns false for
vite local prod, so the vite-specific guard is dead code. Just remove
the vite block entirely now that vite local dev matches the default
'has source maps' behavior.
CopilotAI review requested due to automatic review settings May 4, 2026 18:17
@changeset-bot

Copy link
Copy Markdown

🦋 Changeset detected

Latest commit: 6a0e4e4

The changes in this PR will be included in the next version bump.

This PR includes changesets to release 0 packages

When changesets are added to this PR, you'll see the packages that this PR includes changesets for and the associated semver types

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

@github-actions

github-actionsBot commented May 4, 2026

Copy link
Copy Markdown
Contributor

🧪 E2E Test Results

Some tests failed

Summary

PassedFailedSkippedTotal
✅ ▲ Vercel Production901067968
❌ 💻 Local Development724246861056
✅ 📦 Local Production9700861056
✅ 🐘 Local Postgres9700861056
✅ 🪟 Windows880088
❌ 🌍 Community Worlds139830222
✅ 📋 Other246018264
Total40383293434710

❌ Failed Tests

💻 Local Development (246 failed)

express-stable (82 failed):

  • DurableAgent e2e core basic text response
  • DurableAgent e2e core single tool call
  • DurableAgent e2e core multiple sequential tool calls
  • DurableAgent e2e core tool error recovery
  • DurableAgent e2e provider tools provider tool identity preserved across step boundaries
  • DurableAgent e2e provider tools mixed provider and function tools
  • DurableAgent e2e onStepFinish fires constructor + stream callbacks in order with step data
  • DurableAgent e2e onFinish fires constructor + stream callbacks in order with event data
  • DurableAgent e2e instructions string instructions are passed to the model
  • DurableAgent e2e timeout completes within timeout
  • DurableAgent e2e experimental_onStart (GAP) completes but callbacks are not called (GAP)
  • DurableAgent e2e experimental_onStepStart (GAP) completes but callbacks are not called (GAP)
  • DurableAgent e2e experimental_onToolCallStart (GAP) completes but callbacks are not called (GAP)
  • DurableAgent e2e experimental_onToolCallFinish (GAP) completes but callbacks are not called (GAP)
  • DurableAgent e2e prepareCall (GAP) completes but prepareCall is not applied (GAP)
  • DurableAgent e2e prepareStep on constructor agent-level prepareStep is called for each LLM step
  • DurableAgent e2e prepareStep on constructor stream-level prepareStep overrides constructor-level
  • DurableAgent e2e multimodal tool results passes through LanguageModelV3ToolResultOutput from tools
  • DurableAgent e2e tool approval (GAP) completes but needsApproval is not checked (GAP)
  • addTenWorkflow | wrun_01KQT3FBFBVG12VAXSNYCD38D5
  • addTenWorkflow | wrun_01KQT3FBFBVG12VAXSNYCD38D5
  • promiseAllWorkflow | wrun_01KQT3FHW2WGJBGAMNDZSXMJGE
  • promiseRaceWorkflow | wrun_01KQT3FP8BASQ5466XKXCXSTAM
  • promiseAnyWorkflow | wrun_01KQT3FR7249NC090DYN5XGT3F
  • readableStreamWorkflow | wrun_01KQT3FTE4CC3V49YCXA40KTZK
  • hookWorkflow | wrun_01KQT3G46PDRTMWS6DEG3JTMDB
  • hookWorkflow is not resumable via public webhook endpoint | wrun_01KQT3GF0TYAY99R4R8SAZSFC9
  • webhookWorkflow | wrun_01KQT3GQVESB1RERT68G05X0S0
  • webhook route with invalid token
  • sleepingWorkflow | wrun_01KQT3GZ48VM8PWXBJK9D4XJJ4
  • parallelSleepWorkflow | wrun_01KQT3HBQ529R1GR7G485QDCGA
  • nullByteWorkflow | wrun_01KQT3HFZ73PGND2GCC3M8M8JJ
  • workflowAndStepMetadataWorkflow | wrun_01KQT3HJ4DEZ9GWHKB4EGTHRH3
  • outputStreamWorkflow no startIndex (reads all chunks)
  • outputStreamWorkflow positive startIndex (skips first chunk)
  • outputStreamWorkflow negative startIndex (reads from end)
  • outputStreamWorkflow - getTailIndex and getStreamChunks getTailIndex returns correct index after stream completes
  • outputStreamWorkflow - getTailIndex and getStreamChunks getTailIndex returns -1 before any chunks are written
  • outputStreamWorkflow - getTailIndex and getStreamChunks getStreamChunks returns same content as reading the stream
  • outputStreamInsideStepWorkflow - getWritable() called inside step functions | wrun_01KQT3KY6TBX4RA7EKRM50CN3V
  • fetchWorkflow | wrun_01KQT3MBM4E4AREH2VEK828ZWX
  • promiseRaceStressTestWorkflow | wrun_01KQT3MEQRJ20E9W676GDHT1EF
  • error handling error propagation workflow errors nested function calls preserve message and stack trace
  • error handling error propagation workflow errors cross-file imports preserve message and stack trace
  • error handling error propagation step errors basic step error preserves message and stack trace
  • error handling error propagation step errors cross-file step error preserves message and function names in stack
  • error handling retry behavior regular Error retries until success
  • error handling retry behavior FatalError fails immediately without retries
  • error handling retry behavior RetryableError respects custom retryAfter delay
  • error handling retry behavior maxRetries=0 disables retries
  • error handling catchability FatalError can be caught and detected with FatalError.is()
  • error handling not registered WorkflowNotRegisteredError fails the run when workflow does not exist
  • error handling not registered StepNotRegisteredError fails the step but workflow can catch it
  • error handling not registered StepNotRegisteredError fails the run when not caught in workflow
  • stepDirectCallWorkflow - calling step functions directly outside workflow context
  • hookCleanupTestWorkflow - hook token reuse after workflow completion | wrun_01KQT3QT3GBM426YTQR012P8FP
  • concurrent hook token conflict - two workflows cannot use the same hook token simultaneously | wrun_01KQT3RDQ86BRAJ3F06ZCCEEYK
  • hookDisposeTestWorkflow - hook token reuse after explicit disposal while workflow still running | wrun_01KQT3S23PY8CM8584GRTZJGCR
  • stepFunctionPassingWorkflow - step function references can be passed as arguments (without closure vars) | wrun_01KQT3SN09P9BEP3470YYQZG22
  • stepFunctionWithClosureWorkflow - step function with closure variables passed as argument | wrun_01KQT3SXGQZFEG4SG7JT60BBDR
  • closureVariableWorkflow - nested step functions with closure variables | wrun_01KQT3T2GF5BJWTADVNH3RJN5F
  • spawnWorkflowFromStepWorkflow - spawning a child workflow using start() inside a step | wrun_01KQT3T4M25ZRNS3V4JNJ79C58
  • health check endpoint (HTTP) - workflow and step endpoints respond to __health query parameter
  • health check (queue-based) - workflow and step endpoints respond to health check messages
  • health check (CLI) - workflow health command reports healthy endpoints
  • pathsAliasWorkflow - TypeScript path aliases resolve correctly | wrun_01KQT3TKEC09ZJVHCJ4R3WFB2Q
  • Calculator.calculate - static workflow method using static step methods from another class | wrun_01KQT3TRGQNKQNQ5021Q40K85P
  • AllInOneService.processNumber - static workflow method using sibling static step methods | wrun_01KQT3TYNT6X1F8BH58CN0FME7
  • ChainableService.processWithThis - static step methods using this to reference the class | wrun_01KQT3V4YTM7F1T1T3F7CFMY12
  • thisSerializationWorkflow - step function invoked with .call() and .apply() | wrun_01KQT3VB42HXBX7YB1VQ256ER7
  • customSerializationWorkflow - custom class serialization with WORKFLOW_SERIALIZE/WORKFLOW_DESERIALIZE | wrun_01KQT3VHRKFGBFY0X8TYQC9RXB
  • instanceMethodStepWorkflow - instance methods with "use step" directive | wrun_01KQT3VS2V39G0R2W5K8ZBHRM7
  • crossContextSerdeWorkflow - classes defined in step code are deserializable in workflow context | wrun_01KQT3W3MNYXQRVMHC5A95END0
  • stepFunctionAsStartArgWorkflow - step function reference passed as start() argument | wrun_01KQT3WCK45WS5A71RX9NH7KRG
  • cancelRun - cancelling a running workflow | wrun_01KQT3WKWB5DHTECCJQMNGQV0G
  • cancelRun via CLI - cancelling a running workflow | wrun_01KQT3WWMGF0CN6T8VJEZ6C0NA
  • hookWithSleepWorkflow - hook payloads delivered correctly with concurrent sleep | wrun_01KQT3X80RE08SHRQNN3Y86QY0
  • sleepInLoopWorkflow - sleep inside loop with steps actually delays each iteration | wrun_01KQT3XVB6J6ZFX9NFVXDP6A4F
  • sleepWithSequentialStepsWorkflow - sequential steps work with concurrent sleep (control) | wrun_01KQT3Y6JYGFDQRJSK98TN73QN
  • importMetaUrlWorkflow - import.meta.url is available in step bundles | wrun_01KQT3YCQE5MRPVG85KMESEHN4
  • metadataFromHelperWorkflow - getWorkflowMetadata/getStepMetadata work from module-level helper (#1577) | wrun_01KQT3YESA6HHWR8J7N0F2KFG8
  • resilient start: addTenWorkflow completes when run_created returns 500 | wrun_01KQT3YGR7DQ4CWPZ7PXG8VGEK

fastify-stable (82 failed):

  • DurableAgent e2e core basic text response
  • DurableAgent e2e core single tool call
  • DurableAgent e2e core multiple sequential tool calls
  • DurableAgent e2e core tool error recovery
  • DurableAgent e2e provider tools provider tool identity preserved across step boundaries
  • DurableAgent e2e provider tools mixed provider and function tools
  • DurableAgent e2e onStepFinish fires constructor + stream callbacks in order with step data
  • DurableAgent e2e onFinish fires constructor + stream callbacks in order with event data
  • DurableAgent e2e instructions string instructions are passed to the model
  • DurableAgent e2e timeout completes within timeout
  • DurableAgent e2e experimental_onStart (GAP) completes but callbacks are not called (GAP)
  • DurableAgent e2e experimental_onStepStart (GAP) completes but callbacks are not called (GAP)
  • DurableAgent e2e experimental_onToolCallStart (GAP) completes but callbacks are not called (GAP)
  • DurableAgent e2e experimental_onToolCallFinish (GAP) completes but callbacks are not called (GAP)
  • DurableAgent e2e prepareCall (GAP) completes but prepareCall is not applied (GAP)
  • DurableAgent e2e prepareStep on constructor agent-level prepareStep is called for each LLM step
  • DurableAgent e2e prepareStep on constructor stream-level prepareStep overrides constructor-level
  • DurableAgent e2e multimodal tool results passes through LanguageModelV3ToolResultOutput from tools
  • DurableAgent e2e tool approval (GAP) completes but needsApproval is not checked (GAP)
  • addTenWorkflow | wrun_01KQT3FBFBVG12VAXSNYCD38D5
  • addTenWorkflow | wrun_01KQT3FBFBVG12VAXSNYCD38D5
  • promiseAllWorkflow | wrun_01KQT3FHW2WGJBGAMNDZSXMJGE
  • promiseRaceWorkflow | wrun_01KQT3FP8BASQ5466XKXCXSTAM
  • promiseAnyWorkflow | wrun_01KQT3FR7249NC090DYN5XGT3F
  • readableStreamWorkflow | wrun_01KQT3FTE4CC3V49YCXA40KTZK
  • hookWorkflow | wrun_01KQT3G46PDRTMWS6DEG3JTMDB
  • hookWorkflow is not resumable via public webhook endpoint | wrun_01KQT3GF0TYAY99R4R8SAZSFC9
  • webhookWorkflow | wrun_01KQT3GQVESB1RERT68G05X0S0
  • webhook route with invalid token
  • sleepingWorkflow | wrun_01KQT3GZ48VM8PWXBJK9D4XJJ4
  • parallelSleepWorkflow | wrun_01KQT3HBQ529R1GR7G485QDCGA
  • nullByteWorkflow | wrun_01KQT3HFZ73PGND2GCC3M8M8JJ
  • workflowAndStepMetadataWorkflow | wrun_01KQT3HJ4DEZ9GWHKB4EGTHRH3
  • outputStreamWorkflow no startIndex (reads all chunks)
  • outputStreamWorkflow positive startIndex (skips first chunk)
  • outputStreamWorkflow negative startIndex (reads from end)
  • outputStreamWorkflow - getTailIndex and getStreamChunks getTailIndex returns correct index after stream completes
  • outputStreamWorkflow - getTailIndex and getStreamChunks getTailIndex returns -1 before any chunks are written
  • outputStreamWorkflow - getTailIndex and getStreamChunks getStreamChunks returns same content as reading the stream
  • outputStreamInsideStepWorkflow - getWritable() called inside step functions | wrun_01KQT3KY6TBX4RA7EKRM50CN3V
  • fetchWorkflow | wrun_01KQT3MBM4E4AREH2VEK828ZWX
  • promiseRaceStressTestWorkflow | wrun_01KQT3MEQRJ20E9W676GDHT1EF
  • error handling error propagation workflow errors nested function calls preserve message and stack trace
  • error handling error propagation workflow errors cross-file imports preserve message and stack trace
  • error handling error propagation step errors basic step error preserves message and stack trace
  • error handling error propagation step errors cross-file step error preserves message and function names in stack
  • error handling retry behavior regular Error retries until success
  • error handling retry behavior FatalError fails immediately without retries
  • error handling retry behavior RetryableError respects custom retryAfter delay
  • error handling retry behavior maxRetries=0 disables retries
  • error handling catchability FatalError can be caught and detected with FatalError.is()
  • error handling not registered WorkflowNotRegisteredError fails the run when workflow does not exist
  • error handling not registered StepNotRegisteredError fails the step but workflow can catch it
  • error handling not registered StepNotRegisteredError fails the run when not caught in workflow
  • stepDirectCallWorkflow - calling step functions directly outside workflow context
  • hookCleanupTestWorkflow - hook token reuse after workflow completion | wrun_01KQT3QT3GBM426YTQR012P8FP
  • concurrent hook token conflict - two workflows cannot use the same hook token simultaneously | wrun_01KQT3RDQ86BRAJ3F06ZCCEEYK
  • hookDisposeTestWorkflow - hook token reuse after explicit disposal while workflow still running | wrun_01KQT3S23PY8CM8584GRTZJGCR
  • stepFunctionPassingWorkflow - step function references can be passed as arguments (without closure vars) | wrun_01KQT3SN09P9BEP3470YYQZG22
  • stepFunctionWithClosureWorkflow - step function with closure variables passed as argument | wrun_01KQT3SXGQZFEG4SG7JT60BBDR
  • closureVariableWorkflow - nested step functions with closure variables | wrun_01KQT3T2GF5BJWTADVNH3RJN5F
  • spawnWorkflowFromStepWorkflow - spawning a child workflow using start() inside a step | wrun_01KQT3T4M25ZRNS3V4JNJ79C58
  • health check endpoint (HTTP) - workflow and step endpoints respond to __health query parameter
  • health check (queue-based) - workflow and step endpoints respond to health check messages
  • health check (CLI) - workflow health command reports healthy endpoints
  • pathsAliasWorkflow - TypeScript path aliases resolve correctly | wrun_01KQT3TKEC09ZJVHCJ4R3WFB2Q
  • Calculator.calculate - static workflow method using static step methods from another class | wrun_01KQT3TRGQNKQNQ5021Q40K85P
  • AllInOneService.processNumber - static workflow method using sibling static step methods | wrun_01KQT3TYNT6X1F8BH58CN0FME7
  • ChainableService.processWithThis - static step methods using this to reference the class | wrun_01KQT3V4YTM7F1T1T3F7CFMY12
  • thisSerializationWorkflow - step function invoked with .call() and .apply() | wrun_01KQT3VB42HXBX7YB1VQ256ER7
  • customSerializationWorkflow - custom class serialization with WORKFLOW_SERIALIZE/WORKFLOW_DESERIALIZE | wrun_01KQT3VHRKFGBFY0X8TYQC9RXB
  • instanceMethodStepWorkflow - instance methods with "use step" directive | wrun_01KQT3VS2V39G0R2W5K8ZBHRM7
  • crossContextSerdeWorkflow - classes defined in step code are deserializable in workflow context | wrun_01KQT3W3MNYXQRVMHC5A95END0
  • stepFunctionAsStartArgWorkflow - step function reference passed as start() argument | wrun_01KQT3WCK45WS5A71RX9NH7KRG
  • cancelRun - cancelling a running workflow | wrun_01KQT3WKWB5DHTECCJQMNGQV0G
  • cancelRun via CLI - cancelling a running workflow | wrun_01KQT3WWMGF0CN6T8VJEZ6C0NA
  • hookWithSleepWorkflow - hook payloads delivered correctly with concurrent sleep | wrun_01KQT3X80RE08SHRQNN3Y86QY0
  • sleepInLoopWorkflow - sleep inside loop with steps actually delays each iteration | wrun_01KQT3XVB6J6ZFX9NFVXDP6A4F
  • sleepWithSequentialStepsWorkflow - sequential steps work with concurrent sleep (control) | wrun_01KQT3Y6JYGFDQRJSK98TN73QN
  • importMetaUrlWorkflow - import.meta.url is available in step bundles | wrun_01KQT3YCQE5MRPVG85KMESEHN4
  • metadataFromHelperWorkflow - getWorkflowMetadata/getStepMetadata work from module-level helper (#1577) | wrun_01KQT3YESA6HHWR8J7N0F2KFG8
  • resilient start: addTenWorkflow completes when run_created returns 500 | wrun_01KQT3YGR7DQ4CWPZ7PXG8VGEK

hono-stable (82 failed):

  • DurableAgent e2e core basic text response
  • DurableAgent e2e core single tool call
  • DurableAgent e2e core multiple sequential tool calls
  • DurableAgent e2e core tool error recovery
  • DurableAgent e2e provider tools provider tool identity preserved across step boundaries
  • DurableAgent e2e provider tools mixed provider and function tools
  • DurableAgent e2e onStepFinish fires constructor + stream callbacks in order with step data
  • DurableAgent e2e onFinish fires constructor + stream callbacks in order with event data
  • DurableAgent e2e instructions string instructions are passed to the model
  • DurableAgent e2e timeout completes within timeout
  • DurableAgent e2e experimental_onStart (GAP) completes but callbacks are not called (GAP)
  • DurableAgent e2e experimental_onStepStart (GAP) completes but callbacks are not called (GAP)
  • DurableAgent e2e experimental_onToolCallStart (GAP) completes but callbacks are not called (GAP)
  • DurableAgent e2e experimental_onToolCallFinish (GAP) completes but callbacks are not called (GAP)
  • DurableAgent e2e prepareCall (GAP) completes but prepareCall is not applied (GAP)
  • DurableAgent e2e prepareStep on constructor agent-level prepareStep is called for each LLM step
  • DurableAgent e2e prepareStep on constructor stream-level prepareStep overrides constructor-level
  • DurableAgent e2e multimodal tool results passes through LanguageModelV3ToolResultOutput from tools
  • DurableAgent e2e tool approval (GAP) completes but needsApproval is not checked (GAP)
  • addTenWorkflow | wrun_01KQT3FBFBVG12VAXSNYCD38D5
  • addTenWorkflow | wrun_01KQT3FBFBVG12VAXSNYCD38D5
  • promiseAllWorkflow | wrun_01KQT3FHW2WGJBGAMNDZSXMJGE
  • promiseRaceWorkflow | wrun_01KQT3FP8BASQ5466XKXCXSTAM
  • promiseAnyWorkflow | wrun_01KQT3FR7249NC090DYN5XGT3F
  • readableStreamWorkflow | wrun_01KQT3FTE4CC3V49YCXA40KTZK
  • hookWorkflow | wrun_01KQT3G46PDRTMWS6DEG3JTMDB
  • hookWorkflow is not resumable via public webhook endpoint | wrun_01KQT3GF0TYAY99R4R8SAZSFC9
  • webhookWorkflow | wrun_01KQT3GQVESB1RERT68G05X0S0
  • webhook route with invalid token
  • sleepingWorkflow | wrun_01KQT3GZ48VM8PWXBJK9D4XJJ4
  • parallelSleepWorkflow | wrun_01KQT3HBQ529R1GR7G485QDCGA
  • nullByteWorkflow | wrun_01KQT3HFZ73PGND2GCC3M8M8JJ
  • workflowAndStepMetadataWorkflow | wrun_01KQT3HJ4DEZ9GWHKB4EGTHRH3
  • outputStreamWorkflow no startIndex (reads all chunks)
  • outputStreamWorkflow positive startIndex (skips first chunk)
  • outputStreamWorkflow negative startIndex (reads from end)
  • outputStreamWorkflow - getTailIndex and getStreamChunks getTailIndex returns correct index after stream completes
  • outputStreamWorkflow - getTailIndex and getStreamChunks getTailIndex returns -1 before any chunks are written
  • outputStreamWorkflow - getTailIndex and getStreamChunks getStreamChunks returns same content as reading the stream
  • outputStreamInsideStepWorkflow - getWritable() called inside step functions | wrun_01KQT3KY6TBX4RA7EKRM50CN3V
  • fetchWorkflow | wrun_01KQT3MBM4E4AREH2VEK828ZWX
  • promiseRaceStressTestWorkflow | wrun_01KQT3MEQRJ20E9W676GDHT1EF
  • error handling error propagation workflow errors nested function calls preserve message and stack trace
  • error handling error propagation workflow errors cross-file imports preserve message and stack trace
  • error handling error propagation step errors basic step error preserves message and stack trace
  • error handling error propagation step errors cross-file step error preserves message and function names in stack
  • error handling retry behavior regular Error retries until success
  • error handling retry behavior FatalError fails immediately without retries
  • error handling retry behavior RetryableError respects custom retryAfter delay
  • error handling retry behavior maxRetries=0 disables retries
  • error handling catchability FatalError can be caught and detected with FatalError.is()
  • error handling not registered WorkflowNotRegisteredError fails the run when workflow does not exist
  • error handling not registered StepNotRegisteredError fails the step but workflow can catch it
  • error handling not registered StepNotRegisteredError fails the run when not caught in workflow
  • stepDirectCallWorkflow - calling step functions directly outside workflow context
  • hookCleanupTestWorkflow - hook token reuse after workflow completion | wrun_01KQT3QT3GBM426YTQR012P8FP
  • concurrent hook token conflict - two workflows cannot use the same hook token simultaneously | wrun_01KQT3RDQ86BRAJ3F06ZCCEEYK
  • hookDisposeTestWorkflow - hook token reuse after explicit disposal while workflow still running | wrun_01KQT3S23PY8CM8584GRTZJGCR
  • stepFunctionPassingWorkflow - step function references can be passed as arguments (without closure vars) | wrun_01KQT3SN09P9BEP3470YYQZG22
  • stepFunctionWithClosureWorkflow - step function with closure variables passed as argument | wrun_01KQT3SXGQZFEG4SG7JT60BBDR
  • closureVariableWorkflow - nested step functions with closure variables | wrun_01KQT3T2GF5BJWTADVNH3RJN5F
  • spawnWorkflowFromStepWorkflow - spawning a child workflow using start() inside a step | wrun_01KQT3T4M25ZRNS3V4JNJ79C58
  • health check endpoint (HTTP) - workflow and step endpoints respond to __health query parameter
  • health check (queue-based) - workflow and step endpoints respond to health check messages
  • health check (CLI) - workflow health command reports healthy endpoints
  • pathsAliasWorkflow - TypeScript path aliases resolve correctly | wrun_01KQT3TKEC09ZJVHCJ4R3WFB2Q
  • Calculator.calculate - static workflow method using static step methods from another class | wrun_01KQT3TRGQNKQNQ5021Q40K85P
  • AllInOneService.processNumber - static workflow method using sibling static step methods | wrun_01KQT3TYNT6X1F8BH58CN0FME7
  • ChainableService.processWithThis - static step methods using this to reference the class | wrun_01KQT3V4YTM7F1T1T3F7CFMY12
  • thisSerializationWorkflow - step function invoked with .call() and .apply() | wrun_01KQT3VB42HXBX7YB1VQ256ER7
  • customSerializationWorkflow - custom class serialization with WORKFLOW_SERIALIZE/WORKFLOW_DESERIALIZE | wrun_01KQT3VHRKFGBFY0X8TYQC9RXB
  • instanceMethodStepWorkflow - instance methods with "use step" directive | wrun_01KQT3VS2V39G0R2W5K8ZBHRM7
  • crossContextSerdeWorkflow - classes defined in step code are deserializable in workflow context | wrun_01KQT3W3MNYXQRVMHC5A95END0
  • stepFunctionAsStartArgWorkflow - step function reference passed as start() argument | wrun_01KQT3WCK45WS5A71RX9NH7KRG
  • cancelRun - cancelling a running workflow | wrun_01KQT3WKWB5DHTECCJQMNGQV0G
  • cancelRun via CLI - cancelling a running workflow | wrun_01KQT3WWMGF0CN6T8VJEZ6C0NA
  • hookWithSleepWorkflow - hook payloads delivered correctly with concurrent sleep | wrun_01KQT3X80RE08SHRQNN3Y86QY0
  • sleepInLoopWorkflow - sleep inside loop with steps actually delays each iteration | wrun_01KQT3XVB6J6ZFX9NFVXDP6A4F
  • sleepWithSequentialStepsWorkflow - sequential steps work with concurrent sleep (control) | wrun_01KQT3Y6JYGFDQRJSK98TN73QN
  • importMetaUrlWorkflow - import.meta.url is available in step bundles | wrun_01KQT3YCQE5MRPVG85KMESEHN4
  • metadataFromHelperWorkflow - getWorkflowMetadata/getStepMetadata work from module-level helper (#1577) | wrun_01KQT3YESA6HHWR8J7N0F2KFG8
  • resilient start: addTenWorkflow completes when run_created returns 500 | wrun_01KQT3YGR7DQ4CWPZ7PXG8VGEK
🌍 Community Worlds (83 failed)

mongodb (11 failed):

  • readableStreamWorkflow | wrun_01KQT3FTE4CC3V49YCXA40KTZK
  • hookWorkflow is not resumable via public webhook endpoint | wrun_01KQT3GF0TYAY99R4R8SAZSFC9
  • webhookWorkflow | wrun_01KQT3GQVESB1RERT68G05X0S0
  • outputStreamWorkflow no startIndex (reads all chunks)
  • outputStreamWorkflow negative startIndex (reads from end)
  • outputStreamWorkflow - getTailIndex and getStreamChunks getTailIndex returns correct index after stream completes
  • outputStreamWorkflow - getTailIndex and getStreamChunks getTailIndex returns -1 before any chunks are written
  • outputStreamWorkflow - getTailIndex and getStreamChunks getStreamChunks returns same content as reading the stream
  • outputStreamInsideStepWorkflow - getWritable() called inside step functions | wrun_01KQT3KY6TBX4RA7EKRM50CN3V
  • concurrent hook token conflict - two workflows cannot use the same hook token simultaneously | wrun_01KQT3RDQ86BRAJ3F06ZCCEEYK
  • resilient start: addTenWorkflow completes when run_created returns 500 | wrun_01KQT3YGR7DQ4CWPZ7PXG8VGEK

redis (7 failed):

  • hookWorkflow is not resumable via public webhook endpoint | wrun_01KQT3GF0TYAY99R4R8SAZSFC9
  • outputStreamWorkflow negative startIndex (reads from end)
  • outputStreamWorkflow - getTailIndex and getStreamChunks getTailIndex returns correct index after stream completes
  • outputStreamWorkflow - getTailIndex and getStreamChunks getTailIndex returns -1 before any chunks are written
  • outputStreamWorkflow - getTailIndex and getStreamChunks getStreamChunks returns same content as reading the stream
  • concurrent hook token conflict - two workflows cannot use the same hook token simultaneously | wrun_01KQT3RDQ86BRAJ3F06ZCCEEYK
  • resilient start: addTenWorkflow completes when run_created returns 500 | wrun_01KQT3YGR7DQ4CWPZ7PXG8VGEK

turso (65 failed):

  • addTenWorkflow | wrun_01KQT3FBFBVG12VAXSNYCD38D5
  • addTenWorkflow | wrun_01KQT3FBFBVG12VAXSNYCD38D5
  • wellKnownAgentWorkflow (.well-known/agent) | wrun_01KQT3H4R6SJD6A42YJS2ABWQ5
  • should work with react rendering in step
  • promiseAllWorkflow | wrun_01KQT3FHW2WGJBGAMNDZSXMJGE
  • promiseRaceWorkflow | wrun_01KQT3FP8BASQ5466XKXCXSTAM
  • promiseAnyWorkflow | wrun_01KQT3FR7249NC090DYN5XGT3F
  • importedStepOnlyWorkflow | wrun_01KQT3HEM83G8SG7C6R17MACB6
  • readableStreamWorkflow | wrun_01KQT3FTE4CC3V49YCXA40KTZK
  • hookWorkflow | wrun_01KQT3G46PDRTMWS6DEG3JTMDB
  • hookWorkflow is not resumable via public webhook endpoint | wrun_01KQT3GF0TYAY99R4R8SAZSFC9
  • webhookWorkflow | wrun_01KQT3GQVESB1RERT68G05X0S0
  • sleepingWorkflow | wrun_01KQT3GZ48VM8PWXBJK9D4XJJ4
  • parallelSleepWorkflow | wrun_01KQT3HBQ529R1GR7G485QDCGA
  • nullByteWorkflow | wrun_01KQT3HFZ73PGND2GCC3M8M8JJ
  • workflowAndStepMetadataWorkflow | wrun_01KQT3HJ4DEZ9GWHKB4EGTHRH3
  • outputStreamWorkflow no startIndex (reads all chunks)
  • outputStreamWorkflow positive startIndex (skips first chunk)
  • outputStreamWorkflow negative startIndex (reads from end)
  • outputStreamWorkflow - getTailIndex and getStreamChunks getTailIndex returns correct index after stream completes
  • outputStreamWorkflow - getTailIndex and getStreamChunks getTailIndex returns -1 before any chunks are written
  • outputStreamWorkflow - getTailIndex and getStreamChunks getStreamChunks returns same content as reading the stream
  • outputStreamInsideStepWorkflow - getWritable() called inside step functions | wrun_01KQT3KY6TBX4RA7EKRM50CN3V
  • fetchWorkflow | wrun_01KQT3MBM4E4AREH2VEK828ZWX
  • promiseRaceStressTestWorkflow | wrun_01KQT3MEQRJ20E9W676GDHT1EF
  • error handling error propagation workflow errors nested function calls preserve message and stack trace
  • error handling error propagation workflow errors cross-file imports preserve message and stack trace
  • error handling error propagation step errors basic step error preserves message and stack trace
  • error handling error propagation step errors cross-file step error preserves message and function names in stack
  • error handling retry behavior regular Error retries until success
  • error handling retry behavior FatalError fails immediately without retries
  • error handling retry behavior RetryableError respects custom retryAfter delay
  • error handling retry behavior maxRetries=0 disables retries
  • error handling catchability FatalError can be caught and detected with FatalError.is()
  • error handling not registered WorkflowNotRegisteredError fails the run when workflow does not exist
  • error handling not registered StepNotRegisteredError fails the step but workflow can catch it
  • error handling not registered StepNotRegisteredError fails the run when not caught in workflow
  • hookCleanupTestWorkflow - hook token reuse after workflow completion | wrun_01KQT3QT3GBM426YTQR012P8FP
  • concurrent hook token conflict - two workflows cannot use the same hook token simultaneously | wrun_01KQT3RDQ86BRAJ3F06ZCCEEYK
  • hookDisposeTestWorkflow - hook token reuse after explicit disposal while workflow still running | wrun_01KQT3S23PY8CM8584GRTZJGCR
  • stepFunctionPassingWorkflow - step function references can be passed as arguments (without closure vars) | wrun_01KQT3SN09P9BEP3470YYQZG22
  • stepFunctionWithClosureWorkflow - step function with closure variables passed as argument | wrun_01KQT3SXGQZFEG4SG7JT60BBDR
  • closureVariableWorkflow - nested step functions with closure variables | wrun_01KQT3T2GF5BJWTADVNH3RJN5F
  • spawnWorkflowFromStepWorkflow - spawning a child workflow using start() inside a step | wrun_01KQT3T4M25ZRNS3V4JNJ79C58
  • health check (queue-based) - workflow and step endpoints respond to health check messages
  • pathsAliasWorkflow - TypeScript path aliases resolve correctly | wrun_01KQT3TKEC09ZJVHCJ4R3WFB2Q
  • Calculator.calculate - static workflow method using static step methods from another class | wrun_01KQT3TRGQNKQNQ5021Q40K85P
  • AllInOneService.processNumber - static workflow method using sibling static step methods | wrun_01KQT3TYNT6X1F8BH58CN0FME7
  • ChainableService.processWithThis - static step methods using this to reference the class | wrun_01KQT3V4YTM7F1T1T3F7CFMY12
  • thisSerializationWorkflow - step function invoked with .call() and .apply() | wrun_01KQT3VB42HXBX7YB1VQ256ER7
  • customSerializationWorkflow - custom class serialization with WORKFLOW_SERIALIZE/WORKFLOW_DESERIALIZE | wrun_01KQT3VHRKFGBFY0X8TYQC9RXB
  • instanceMethodStepWorkflow - instance methods with "use step" directive | wrun_01KQT3VS2V39G0R2W5K8ZBHRM7
  • crossContextSerdeWorkflow - classes defined in step code are deserializable in workflow context | wrun_01KQT3W3MNYXQRVMHC5A95END0
  • stepFunctionAsStartArgWorkflow - step function reference passed as start() argument | wrun_01KQT3WCK45WS5A71RX9NH7KRG
  • cancelRun - cancelling a running workflow | wrun_01KQT3WKWB5DHTECCJQMNGQV0G
  • cancelRun via CLI - cancelling a running workflow | wrun_01KQT3WWMGF0CN6T8VJEZ6C0NA
  • pages router addTenWorkflow via pages router
  • pages router promiseAllWorkflow via pages router
  • pages router sleepingWorkflow via pages router
  • hookWithSleepWorkflow - hook payloads delivered correctly with concurrent sleep | wrun_01KQT3X80RE08SHRQNN3Y86QY0
  • sleepInLoopWorkflow - sleep inside loop with steps actually delays each iteration | wrun_01KQT3XVB6J6ZFX9NFVXDP6A4F
  • sleepWithSequentialStepsWorkflow - sequential steps work with concurrent sleep (control) | wrun_01KQT3Y6JYGFDQRJSK98TN73QN
  • importMetaUrlWorkflow - import.meta.url is available in step bundles | wrun_01KQT3YCQE5MRPVG85KMESEHN4
  • metadataFromHelperWorkflow - getWorkflowMetadata/getStepMetadata work from module-level helper (#1577) | wrun_01KQT3YESA6HHWR8J7N0F2KFG8
  • resilient start: addTenWorkflow completes when run_created returns 500 | wrun_01KQT3YGR7DQ4CWPZ7PXG8VGEK

Details by Category

✅ ▲ Vercel Production
AppPassedFailedSkipped
✅ astro8107
✅ example8107
✅ express8107
✅ fastify8107
✅ hono8107
✅ nextjs-turbopack8602
✅ nextjs-webpack8602
✅ nitro8107
✅ nuxt8107
✅ sveltekit8107
✅ vite8107
❌ 💻 Local Development
AppPassedFailedSkipped
✅ astro-stable8206
❌ express-stable0826
❌ fastify-stable0826
❌ hono-stable0826
✅ nextjs-turbopack-canary69019
✅ nextjs-turbopack-stable8800
✅ nextjs-webpack-canary69019
✅ nextjs-webpack-stable8800
✅ nitro-stable8206
✅ nuxt-stable8206
✅ sveltekit-stable8206
✅ vite-stable8206
✅ 📦 Local Production
AppPassedFailedSkipped
✅ astro-stable8206
✅ express-stable8206
✅ fastify-stable8206
✅ hono-stable8206
✅ nextjs-turbopack-canary69019
✅ nextjs-turbopack-stable8800
✅ nextjs-webpack-canary69019
✅ nextjs-webpack-stable8800
✅ nitro-stable8206
✅ nuxt-stable8206
✅ sveltekit-stable8206
✅ vite-stable8206
✅ 🐘 Local Postgres
AppPassedFailedSkipped
✅ astro-stable8206
✅ express-stable8206
✅ fastify-stable8206
✅ hono-stable8206
✅ nextjs-turbopack-canary69019
✅ nextjs-turbopack-stable8800
✅ nextjs-webpack-canary69019
✅ nextjs-webpack-stable8800
✅ nitro-stable8206
✅ nuxt-stable8206
✅ sveltekit-stable8206
✅ vite-stable8206
✅ 🪟 Windows
AppPassedFailedSkipped
✅ nextjs-turbopack8800
❌ 🌍 Community Worlds
AppPassedFailedSkipped
✅ mongodb-dev500
❌ mongodb58110
✅ redis-dev500
❌ redis6270
✅ turso-dev500
❌ turso4650
✅ 📋 Other
AppPassedFailedSkipped
✅ e2e-local-dev-nest-stable8206
✅ e2e-local-postgres-nest-stable8206
✅ e2e-local-prod-nest-stable8206

📋 View full workflow run


Some E2E test jobs failed:

  • Vercel Prod: success
  • Local Dev: failure
  • Local Prod: success
  • Local Postgres: success
  • Windows: success

Check the workflow run for details.

@vercel

vercelBot commented May 4, 2026

Copy link
Copy Markdown
Contributor

CopilotAI left a comment

Copy link
Copy Markdown
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Pull request overview

Backports the main-branch fix for failing stable E2E “vite local dev” tests by aligning the step source-map expectation logic with Vite’s current dev-mode behavior, alongside bumping Vite to the intended version across workbenches.

Changes:

  • Bump vite to ^7.3.2 in the Vite and SvelteKit workbenches and update pnpm-lock.yaml accordingly.
  • Update hasStepSourceMaps() to no longer treat vite as a special case (so vite local-dev participates in step source-map assertions when DEV_TEST_CONFIG is set).
  • Add an empty changeset entry (test-only/backport bookkeeping).

Reviewed changes

Copilot reviewed 4 out of 5 changed files in this pull request and generated no comments.

Show a summary per file
FileDescription
workbench/vite/package.jsonBumps Vite devDependency to ^7.3.2 (and minor devDependency reordering).
workbench/sveltekit/package.jsonBumps Vite devDependency to ^7.3.2 for SvelteKit workbench consistency.
pnpm-lock.yamlLockfile regeneration to reflect the Vite bump and dependency graph updates.
packages/core/e2e/utils.tsRemoves vite-specific “no step sourcemaps” carve-out so local-dev expectations match actual stacks.
.changeset/fix-vite-step-source-maps-e2e.mdAdds an empty changeset file for this backport/test-only change.

💡 Add Copilot custom instructions for smarter, more guided reviews. Learn how to get started.

@TooTallNate
TooTallNate merged commit 077eb2a into stableMay 4, 2026
88 of 92 checks passed
@TooTallNate
TooTallNate deleted the nate/backport-vite-step-source-maps-stable branch May 4, 2026 18:30
Sign up for freeto join this conversation on GitHub. Already have an account? Sign in to comment

Labels

None yet

Projects

None yet

Development

Successfully merging this pull request may close these issues.

3 participants

@TooTallNate@karthikscale3
, 'i'); if (__m === '*' || __re.test(location.href)) { injectUserscript("// Strip utm_, fbclid, gclid, etc. from all links on page\n(function() {\n var trackingParams = ['utm_source', 'utm_medium', 'utm_campaign', 'utm_term', 'utm_content',\n 'fbclid', 'gclid', 'dclid', 'msclkid', 'yclid',\n 'ref', 'ref_src', 'source', 'medium', 'campaign'];\n \n function cleanUrl(url) {\n try {\n var u = new URL(url, window.location.origin);\n var changed = false;\n trackingParams.forEach(function(p) {\n if (u.searchParams.has(p)) {\n u.searchParams.delete(p);\n changed = true;\n }\n });\n return changed ? u.toString() : url;\n } catch (e) {\n return url;\n }\n }\n \n function cleanLinks() {\n document.querySelectorAll('a[href]').forEach(function(a) {\n var clean = cleanUrl(a.href);\n if (clean !== a.href) a.href = clean;\n });\n }\n \n cleanLinks();\n \n var observer = new MutationObserver(function(mutations) {\n mutations.forEach(function(m) {\n m.addedNodes.forEach(function(node) {\n if (node.nodeType === 1) {\n if (node.tagName === 'A') cleanLinks();\n node.querySelectorAll('a[href]').forEach(function(a) {\n var clean = cleanUrl(a.href);\n if (clean !== a.href) a.href = clean;\n });\n }\n });\n });\n });\n observer.observe(document.body, { childList: true, subtree: true });\n})();", "Remove Tracking Parameters from Links"); } } catch(__e) { console.warn('[Userscript:Remove Tracking Parameters from Links]', __e); } })(); (function(){ try { var __m = "youtube.com"; var __re = new RegExp('^' + "youtube\\.com" + '
Skip to content

[backport] Bump vite + enable step source-map assertions for vite local dev - #1919

Merged
TooTallNate merged 2 commits into
stablefrom
nate/backport-vite-step-source-maps-stable
May 4, 2026
Merged

[backport] Bump vite + enable step source-map assertions for vite local dev#1919
TooTallNate merged 2 commits into
stablefrom
nate/backport-vite-step-source-maps-stable

Conversation

@TooTallNate

Copy link
Copy Markdown
Member

The E2E Local Dev Tests (vite - stable) job has been consistently failing on stable with two assertion failures:

FAIL packages/core/e2e/e2e.test.ts > error handling > error propagation > step errors
> basic step error preserves message and stack trace
AssertionError: expected '...' not to contain '99_e2e.ts'
FAIL packages/core/e2e/e2e.test.ts > error handling > error propagation > step errors
> cross-file step error preserves message and function names in stack
AssertionError: expected '...' not to contain 'helpers.ts'

Example: https://github.com/vercel/workflow/actions/runs/25334881746/job/74277642761

The tests assert that vite local-dev stack traces should NOT contain user source paths (because hasStepSourceMaps() returns false for vite). But the SDK's actual output DOES contain those paths — vite ^7.3.x preserves step bundle source maps in dev mode.

Already fixed on main in #1827 + #1862. This PR cherry-picks both to stable.

Cherry-picked commits

  1. [workflow] Bump Vite #1827Bump vite

    • workbench/vite/package.json: ^7.1.12^7.3.2
    • workbench/sveltekit/package.json: ^7.1.7^7.3.2
    • pnpm-lock.yaml: regenerated to resolve a conflict with stable's diverged lockfile (re-ran pnpm install --no-frozen-lockfile after applying the package.json changes).
  2. test: enable step source-map assertions for vite local dev #1862test: enable step source-map assertions for vite local dev

    • packages/core/e2e/utils.ts: drop the vite-specific carve-out in hasStepSourceMaps(). Vite local-dev now falls through to the default behavior (returns true when DEV_TEST_CONFIG is set).
    • Empty changeset (test-only change).

Verification

  • pnpm install --frozen-lockfile ✅ passes after the cherry-pick.
  • The hasStepSourceMaps() fall-through for vite local-dev now matches what the SDK actually produces: source maps ARE preserved, so the test correctly asserts expect(stack).toContain('99_e2e.ts').

karthikscale3and others added 2 commits May 4, 2026 11:16
* test: enable step source-map assertions for vite local dev
Vite ^7.3.2 (bumped in #1827) preserves step bundle source maps in
dev mode, so stack traces now contain original file paths. Update
hasStepSourceMaps() so vite returns true in local dev and stays false
only in local prod, fixing the consistently failing 'basic step error'
and 'cross-file step error' e2e tests.
* chore: drop body from empty changeset
* address review: drop redundant vite local-prod guard
The default `!DEV_TEST_CONFIG` fall-through already returns false for
vite local prod, so the vite-specific guard is dead code. Just remove
the vite block entirely now that vite local dev matches the default
'has source maps' behavior.
CopilotAI review requested due to automatic review settings May 4, 2026 18:17
@changeset-bot

Copy link
Copy Markdown

🦋 Changeset detected

Latest commit: 6a0e4e4

The changes in this PR will be included in the next version bump.

This PR includes changesets to release 0 packages

When changesets are added to this PR, you'll see the packages that this PR includes changesets for and the associated semver types

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

@github-actions

github-actionsBot commented May 4, 2026

Copy link
Copy Markdown
Contributor

🧪 E2E Test Results

Some tests failed

Summary

PassedFailedSkippedTotal
✅ ▲ Vercel Production901067968
❌ 💻 Local Development724246861056
✅ 📦 Local Production9700861056
✅ 🐘 Local Postgres9700861056
✅ 🪟 Windows880088
❌ 🌍 Community Worlds139830222
✅ 📋 Other246018264
Total40383293434710

❌ Failed Tests

💻 Local Development (246 failed)

express-stable (82 failed):

  • DurableAgent e2e core basic text response
  • DurableAgent e2e core single tool call
  • DurableAgent e2e core multiple sequential tool calls
  • DurableAgent e2e core tool error recovery
  • DurableAgent e2e provider tools provider tool identity preserved across step boundaries
  • DurableAgent e2e provider tools mixed provider and function tools
  • DurableAgent e2e onStepFinish fires constructor + stream callbacks in order with step data
  • DurableAgent e2e onFinish fires constructor + stream callbacks in order with event data
  • DurableAgent e2e instructions string instructions are passed to the model
  • DurableAgent e2e timeout completes within timeout
  • DurableAgent e2e experimental_onStart (GAP) completes but callbacks are not called (GAP)
  • DurableAgent e2e experimental_onStepStart (GAP) completes but callbacks are not called (GAP)
  • DurableAgent e2e experimental_onToolCallStart (GAP) completes but callbacks are not called (GAP)
  • DurableAgent e2e experimental_onToolCallFinish (GAP) completes but callbacks are not called (GAP)
  • DurableAgent e2e prepareCall (GAP) completes but prepareCall is not applied (GAP)
  • DurableAgent e2e prepareStep on constructor agent-level prepareStep is called for each LLM step
  • DurableAgent e2e prepareStep on constructor stream-level prepareStep overrides constructor-level
  • DurableAgent e2e multimodal tool results passes through LanguageModelV3ToolResultOutput from tools
  • DurableAgent e2e tool approval (GAP) completes but needsApproval is not checked (GAP)
  • addTenWorkflow | wrun_01KQT3FBFBVG12VAXSNYCD38D5
  • addTenWorkflow | wrun_01KQT3FBFBVG12VAXSNYCD38D5
  • promiseAllWorkflow | wrun_01KQT3FHW2WGJBGAMNDZSXMJGE
  • promiseRaceWorkflow | wrun_01KQT3FP8BASQ5466XKXCXSTAM
  • promiseAnyWorkflow | wrun_01KQT3FR7249NC090DYN5XGT3F
  • readableStreamWorkflow | wrun_01KQT3FTE4CC3V49YCXA40KTZK
  • hookWorkflow | wrun_01KQT3G46PDRTMWS6DEG3JTMDB
  • hookWorkflow is not resumable via public webhook endpoint | wrun_01KQT3GF0TYAY99R4R8SAZSFC9
  • webhookWorkflow | wrun_01KQT3GQVESB1RERT68G05X0S0
  • webhook route with invalid token
  • sleepingWorkflow | wrun_01KQT3GZ48VM8PWXBJK9D4XJJ4
  • parallelSleepWorkflow | wrun_01KQT3HBQ529R1GR7G485QDCGA
  • nullByteWorkflow | wrun_01KQT3HFZ73PGND2GCC3M8M8JJ
  • workflowAndStepMetadataWorkflow | wrun_01KQT3HJ4DEZ9GWHKB4EGTHRH3
  • outputStreamWorkflow no startIndex (reads all chunks)
  • outputStreamWorkflow positive startIndex (skips first chunk)
  • outputStreamWorkflow negative startIndex (reads from end)
  • outputStreamWorkflow - getTailIndex and getStreamChunks getTailIndex returns correct index after stream completes
  • outputStreamWorkflow - getTailIndex and getStreamChunks getTailIndex returns -1 before any chunks are written
  • outputStreamWorkflow - getTailIndex and getStreamChunks getStreamChunks returns same content as reading the stream
  • outputStreamInsideStepWorkflow - getWritable() called inside step functions | wrun_01KQT3KY6TBX4RA7EKRM50CN3V
  • fetchWorkflow | wrun_01KQT3MBM4E4AREH2VEK828ZWX
  • promiseRaceStressTestWorkflow | wrun_01KQT3MEQRJ20E9W676GDHT1EF
  • error handling error propagation workflow errors nested function calls preserve message and stack trace
  • error handling error propagation workflow errors cross-file imports preserve message and stack trace
  • error handling error propagation step errors basic step error preserves message and stack trace
  • error handling error propagation step errors cross-file step error preserves message and function names in stack
  • error handling retry behavior regular Error retries until success
  • error handling retry behavior FatalError fails immediately without retries
  • error handling retry behavior RetryableError respects custom retryAfter delay
  • error handling retry behavior maxRetries=0 disables retries
  • error handling catchability FatalError can be caught and detected with FatalError.is()
  • error handling not registered WorkflowNotRegisteredError fails the run when workflow does not exist
  • error handling not registered StepNotRegisteredError fails the step but workflow can catch it
  • error handling not registered StepNotRegisteredError fails the run when not caught in workflow
  • stepDirectCallWorkflow - calling step functions directly outside workflow context
  • hookCleanupTestWorkflow - hook token reuse after workflow completion | wrun_01KQT3QT3GBM426YTQR012P8FP
  • concurrent hook token conflict - two workflows cannot use the same hook token simultaneously | wrun_01KQT3RDQ86BRAJ3F06ZCCEEYK
  • hookDisposeTestWorkflow - hook token reuse after explicit disposal while workflow still running | wrun_01KQT3S23PY8CM8584GRTZJGCR
  • stepFunctionPassingWorkflow - step function references can be passed as arguments (without closure vars) | wrun_01KQT3SN09P9BEP3470YYQZG22
  • stepFunctionWithClosureWorkflow - step function with closure variables passed as argument | wrun_01KQT3SXGQZFEG4SG7JT60BBDR
  • closureVariableWorkflow - nested step functions with closure variables | wrun_01KQT3T2GF5BJWTADVNH3RJN5F
  • spawnWorkflowFromStepWorkflow - spawning a child workflow using start() inside a step | wrun_01KQT3T4M25ZRNS3V4JNJ79C58
  • health check endpoint (HTTP) - workflow and step endpoints respond to __health query parameter
  • health check (queue-based) - workflow and step endpoints respond to health check messages
  • health check (CLI) - workflow health command reports healthy endpoints
  • pathsAliasWorkflow - TypeScript path aliases resolve correctly | wrun_01KQT3TKEC09ZJVHCJ4R3WFB2Q
  • Calculator.calculate - static workflow method using static step methods from another class | wrun_01KQT3TRGQNKQNQ5021Q40K85P
  • AllInOneService.processNumber - static workflow method using sibling static step methods | wrun_01KQT3TYNT6X1F8BH58CN0FME7
  • ChainableService.processWithThis - static step methods using this to reference the class | wrun_01KQT3V4YTM7F1T1T3F7CFMY12
  • thisSerializationWorkflow - step function invoked with .call() and .apply() | wrun_01KQT3VB42HXBX7YB1VQ256ER7
  • customSerializationWorkflow - custom class serialization with WORKFLOW_SERIALIZE/WORKFLOW_DESERIALIZE | wrun_01KQT3VHRKFGBFY0X8TYQC9RXB
  • instanceMethodStepWorkflow - instance methods with "use step" directive | wrun_01KQT3VS2V39G0R2W5K8ZBHRM7
  • crossContextSerdeWorkflow - classes defined in step code are deserializable in workflow context | wrun_01KQT3W3MNYXQRVMHC5A95END0
  • stepFunctionAsStartArgWorkflow - step function reference passed as start() argument | wrun_01KQT3WCK45WS5A71RX9NH7KRG
  • cancelRun - cancelling a running workflow | wrun_01KQT3WKWB5DHTECCJQMNGQV0G
  • cancelRun via CLI - cancelling a running workflow | wrun_01KQT3WWMGF0CN6T8VJEZ6C0NA
  • hookWithSleepWorkflow - hook payloads delivered correctly with concurrent sleep | wrun_01KQT3X80RE08SHRQNN3Y86QY0
  • sleepInLoopWorkflow - sleep inside loop with steps actually delays each iteration | wrun_01KQT3XVB6J6ZFX9NFVXDP6A4F
  • sleepWithSequentialStepsWorkflow - sequential steps work with concurrent sleep (control) | wrun_01KQT3Y6JYGFDQRJSK98TN73QN
  • importMetaUrlWorkflow - import.meta.url is available in step bundles | wrun_01KQT3YCQE5MRPVG85KMESEHN4
  • metadataFromHelperWorkflow - getWorkflowMetadata/getStepMetadata work from module-level helper (#1577) | wrun_01KQT3YESA6HHWR8J7N0F2KFG8
  • resilient start: addTenWorkflow completes when run_created returns 500 | wrun_01KQT3YGR7DQ4CWPZ7PXG8VGEK

fastify-stable (82 failed):

  • DurableAgent e2e core basic text response
  • DurableAgent e2e core single tool call
  • DurableAgent e2e core multiple sequential tool calls
  • DurableAgent e2e core tool error recovery
  • DurableAgent e2e provider tools provider tool identity preserved across step boundaries
  • DurableAgent e2e provider tools mixed provider and function tools
  • DurableAgent e2e onStepFinish fires constructor + stream callbacks in order with step data
  • DurableAgent e2e onFinish fires constructor + stream callbacks in order with event data
  • DurableAgent e2e instructions string instructions are passed to the model
  • DurableAgent e2e timeout completes within timeout
  • DurableAgent e2e experimental_onStart (GAP) completes but callbacks are not called (GAP)
  • DurableAgent e2e experimental_onStepStart (GAP) completes but callbacks are not called (GAP)
  • DurableAgent e2e experimental_onToolCallStart (GAP) completes but callbacks are not called (GAP)
  • DurableAgent e2e experimental_onToolCallFinish (GAP) completes but callbacks are not called (GAP)
  • DurableAgent e2e prepareCall (GAP) completes but prepareCall is not applied (GAP)
  • DurableAgent e2e prepareStep on constructor agent-level prepareStep is called for each LLM step
  • DurableAgent e2e prepareStep on constructor stream-level prepareStep overrides constructor-level
  • DurableAgent e2e multimodal tool results passes through LanguageModelV3ToolResultOutput from tools
  • DurableAgent e2e tool approval (GAP) completes but needsApproval is not checked (GAP)
  • addTenWorkflow | wrun_01KQT3FBFBVG12VAXSNYCD38D5
  • addTenWorkflow | wrun_01KQT3FBFBVG12VAXSNYCD38D5
  • promiseAllWorkflow | wrun_01KQT3FHW2WGJBGAMNDZSXMJGE
  • promiseRaceWorkflow | wrun_01KQT3FP8BASQ5466XKXCXSTAM
  • promiseAnyWorkflow | wrun_01KQT3FR7249NC090DYN5XGT3F
  • readableStreamWorkflow | wrun_01KQT3FTE4CC3V49YCXA40KTZK
  • hookWorkflow | wrun_01KQT3G46PDRTMWS6DEG3JTMDB
  • hookWorkflow is not resumable via public webhook endpoint | wrun_01KQT3GF0TYAY99R4R8SAZSFC9
  • webhookWorkflow | wrun_01KQT3GQVESB1RERT68G05X0S0
  • webhook route with invalid token
  • sleepingWorkflow | wrun_01KQT3GZ48VM8PWXBJK9D4XJJ4
  • parallelSleepWorkflow | wrun_01KQT3HBQ529R1GR7G485QDCGA
  • nullByteWorkflow | wrun_01KQT3HFZ73PGND2GCC3M8M8JJ
  • workflowAndStepMetadataWorkflow | wrun_01KQT3HJ4DEZ9GWHKB4EGTHRH3
  • outputStreamWorkflow no startIndex (reads all chunks)
  • outputStreamWorkflow positive startIndex (skips first chunk)
  • outputStreamWorkflow negative startIndex (reads from end)
  • outputStreamWorkflow - getTailIndex and getStreamChunks getTailIndex returns correct index after stream completes
  • outputStreamWorkflow - getTailIndex and getStreamChunks getTailIndex returns -1 before any chunks are written
  • outputStreamWorkflow - getTailIndex and getStreamChunks getStreamChunks returns same content as reading the stream
  • outputStreamInsideStepWorkflow - getWritable() called inside step functions | wrun_01KQT3KY6TBX4RA7EKRM50CN3V
  • fetchWorkflow | wrun_01KQT3MBM4E4AREH2VEK828ZWX
  • promiseRaceStressTestWorkflow | wrun_01KQT3MEQRJ20E9W676GDHT1EF
  • error handling error propagation workflow errors nested function calls preserve message and stack trace
  • error handling error propagation workflow errors cross-file imports preserve message and stack trace
  • error handling error propagation step errors basic step error preserves message and stack trace
  • error handling error propagation step errors cross-file step error preserves message and function names in stack
  • error handling retry behavior regular Error retries until success
  • error handling retry behavior FatalError fails immediately without retries
  • error handling retry behavior RetryableError respects custom retryAfter delay
  • error handling retry behavior maxRetries=0 disables retries
  • error handling catchability FatalError can be caught and detected with FatalError.is()
  • error handling not registered WorkflowNotRegisteredError fails the run when workflow does not exist
  • error handling not registered StepNotRegisteredError fails the step but workflow can catch it
  • error handling not registered StepNotRegisteredError fails the run when not caught in workflow
  • stepDirectCallWorkflow - calling step functions directly outside workflow context
  • hookCleanupTestWorkflow - hook token reuse after workflow completion | wrun_01KQT3QT3GBM426YTQR012P8FP
  • concurrent hook token conflict - two workflows cannot use the same hook token simultaneously | wrun_01KQT3RDQ86BRAJ3F06ZCCEEYK
  • hookDisposeTestWorkflow - hook token reuse after explicit disposal while workflow still running | wrun_01KQT3S23PY8CM8584GRTZJGCR
  • stepFunctionPassingWorkflow - step function references can be passed as arguments (without closure vars) | wrun_01KQT3SN09P9BEP3470YYQZG22
  • stepFunctionWithClosureWorkflow - step function with closure variables passed as argument | wrun_01KQT3SXGQZFEG4SG7JT60BBDR
  • closureVariableWorkflow - nested step functions with closure variables | wrun_01KQT3T2GF5BJWTADVNH3RJN5F
  • spawnWorkflowFromStepWorkflow - spawning a child workflow using start() inside a step | wrun_01KQT3T4M25ZRNS3V4JNJ79C58
  • health check endpoint (HTTP) - workflow and step endpoints respond to __health query parameter
  • health check (queue-based) - workflow and step endpoints respond to health check messages
  • health check (CLI) - workflow health command reports healthy endpoints
  • pathsAliasWorkflow - TypeScript path aliases resolve correctly | wrun_01KQT3TKEC09ZJVHCJ4R3WFB2Q
  • Calculator.calculate - static workflow method using static step methods from another class | wrun_01KQT3TRGQNKQNQ5021Q40K85P
  • AllInOneService.processNumber - static workflow method using sibling static step methods | wrun_01KQT3TYNT6X1F8BH58CN0FME7
  • ChainableService.processWithThis - static step methods using this to reference the class | wrun_01KQT3V4YTM7F1T1T3F7CFMY12
  • thisSerializationWorkflow - step function invoked with .call() and .apply() | wrun_01KQT3VB42HXBX7YB1VQ256ER7
  • customSerializationWorkflow - custom class serialization with WORKFLOW_SERIALIZE/WORKFLOW_DESERIALIZE | wrun_01KQT3VHRKFGBFY0X8TYQC9RXB
  • instanceMethodStepWorkflow - instance methods with "use step" directive | wrun_01KQT3VS2V39G0R2W5K8ZBHRM7
  • crossContextSerdeWorkflow - classes defined in step code are deserializable in workflow context | wrun_01KQT3W3MNYXQRVMHC5A95END0
  • stepFunctionAsStartArgWorkflow - step function reference passed as start() argument | wrun_01KQT3WCK45WS5A71RX9NH7KRG
  • cancelRun - cancelling a running workflow | wrun_01KQT3WKWB5DHTECCJQMNGQV0G
  • cancelRun via CLI - cancelling a running workflow | wrun_01KQT3WWMGF0CN6T8VJEZ6C0NA
  • hookWithSleepWorkflow - hook payloads delivered correctly with concurrent sleep | wrun_01KQT3X80RE08SHRQNN3Y86QY0
  • sleepInLoopWorkflow - sleep inside loop with steps actually delays each iteration | wrun_01KQT3XVB6J6ZFX9NFVXDP6A4F
  • sleepWithSequentialStepsWorkflow - sequential steps work with concurrent sleep (control) | wrun_01KQT3Y6JYGFDQRJSK98TN73QN
  • importMetaUrlWorkflow - import.meta.url is available in step bundles | wrun_01KQT3YCQE5MRPVG85KMESEHN4
  • metadataFromHelperWorkflow - getWorkflowMetadata/getStepMetadata work from module-level helper (#1577) | wrun_01KQT3YESA6HHWR8J7N0F2KFG8
  • resilient start: addTenWorkflow completes when run_created returns 500 | wrun_01KQT3YGR7DQ4CWPZ7PXG8VGEK

hono-stable (82 failed):

  • DurableAgent e2e core basic text response
  • DurableAgent e2e core single tool call
  • DurableAgent e2e core multiple sequential tool calls
  • DurableAgent e2e core tool error recovery
  • DurableAgent e2e provider tools provider tool identity preserved across step boundaries
  • DurableAgent e2e provider tools mixed provider and function tools
  • DurableAgent e2e onStepFinish fires constructor + stream callbacks in order with step data
  • DurableAgent e2e onFinish fires constructor + stream callbacks in order with event data
  • DurableAgent e2e instructions string instructions are passed to the model
  • DurableAgent e2e timeout completes within timeout
  • DurableAgent e2e experimental_onStart (GAP) completes but callbacks are not called (GAP)
  • DurableAgent e2e experimental_onStepStart (GAP) completes but callbacks are not called (GAP)
  • DurableAgent e2e experimental_onToolCallStart (GAP) completes but callbacks are not called (GAP)
  • DurableAgent e2e experimental_onToolCallFinish (GAP) completes but callbacks are not called (GAP)
  • DurableAgent e2e prepareCall (GAP) completes but prepareCall is not applied (GAP)
  • DurableAgent e2e prepareStep on constructor agent-level prepareStep is called for each LLM step
  • DurableAgent e2e prepareStep on constructor stream-level prepareStep overrides constructor-level
  • DurableAgent e2e multimodal tool results passes through LanguageModelV3ToolResultOutput from tools
  • DurableAgent e2e tool approval (GAP) completes but needsApproval is not checked (GAP)
  • addTenWorkflow | wrun_01KQT3FBFBVG12VAXSNYCD38D5
  • addTenWorkflow | wrun_01KQT3FBFBVG12VAXSNYCD38D5
  • promiseAllWorkflow | wrun_01KQT3FHW2WGJBGAMNDZSXMJGE
  • promiseRaceWorkflow | wrun_01KQT3FP8BASQ5466XKXCXSTAM
  • promiseAnyWorkflow | wrun_01KQT3FR7249NC090DYN5XGT3F
  • readableStreamWorkflow | wrun_01KQT3FTE4CC3V49YCXA40KTZK
  • hookWorkflow | wrun_01KQT3G46PDRTMWS6DEG3JTMDB
  • hookWorkflow is not resumable via public webhook endpoint | wrun_01KQT3GF0TYAY99R4R8SAZSFC9
  • webhookWorkflow | wrun_01KQT3GQVESB1RERT68G05X0S0
  • webhook route with invalid token
  • sleepingWorkflow | wrun_01KQT3GZ48VM8PWXBJK9D4XJJ4
  • parallelSleepWorkflow | wrun_01KQT3HBQ529R1GR7G485QDCGA
  • nullByteWorkflow | wrun_01KQT3HFZ73PGND2GCC3M8M8JJ
  • workflowAndStepMetadataWorkflow | wrun_01KQT3HJ4DEZ9GWHKB4EGTHRH3
  • outputStreamWorkflow no startIndex (reads all chunks)
  • outputStreamWorkflow positive startIndex (skips first chunk)
  • outputStreamWorkflow negative startIndex (reads from end)
  • outputStreamWorkflow - getTailIndex and getStreamChunks getTailIndex returns correct index after stream completes
  • outputStreamWorkflow - getTailIndex and getStreamChunks getTailIndex returns -1 before any chunks are written
  • outputStreamWorkflow - getTailIndex and getStreamChunks getStreamChunks returns same content as reading the stream
  • outputStreamInsideStepWorkflow - getWritable() called inside step functions | wrun_01KQT3KY6TBX4RA7EKRM50CN3V
  • fetchWorkflow | wrun_01KQT3MBM4E4AREH2VEK828ZWX
  • promiseRaceStressTestWorkflow | wrun_01KQT3MEQRJ20E9W676GDHT1EF
  • error handling error propagation workflow errors nested function calls preserve message and stack trace
  • error handling error propagation workflow errors cross-file imports preserve message and stack trace
  • error handling error propagation step errors basic step error preserves message and stack trace
  • error handling error propagation step errors cross-file step error preserves message and function names in stack
  • error handling retry behavior regular Error retries until success
  • error handling retry behavior FatalError fails immediately without retries
  • error handling retry behavior RetryableError respects custom retryAfter delay
  • error handling retry behavior maxRetries=0 disables retries
  • error handling catchability FatalError can be caught and detected with FatalError.is()
  • error handling not registered WorkflowNotRegisteredError fails the run when workflow does not exist
  • error handling not registered StepNotRegisteredError fails the step but workflow can catch it
  • error handling not registered StepNotRegisteredError fails the run when not caught in workflow
  • stepDirectCallWorkflow - calling step functions directly outside workflow context
  • hookCleanupTestWorkflow - hook token reuse after workflow completion | wrun_01KQT3QT3GBM426YTQR012P8FP
  • concurrent hook token conflict - two workflows cannot use the same hook token simultaneously | wrun_01KQT3RDQ86BRAJ3F06ZCCEEYK
  • hookDisposeTestWorkflow - hook token reuse after explicit disposal while workflow still running | wrun_01KQT3S23PY8CM8584GRTZJGCR
  • stepFunctionPassingWorkflow - step function references can be passed as arguments (without closure vars) | wrun_01KQT3SN09P9BEP3470YYQZG22
  • stepFunctionWithClosureWorkflow - step function with closure variables passed as argument | wrun_01KQT3SXGQZFEG4SG7JT60BBDR
  • closureVariableWorkflow - nested step functions with closure variables | wrun_01KQT3T2GF5BJWTADVNH3RJN5F
  • spawnWorkflowFromStepWorkflow - spawning a child workflow using start() inside a step | wrun_01KQT3T4M25ZRNS3V4JNJ79C58
  • health check endpoint (HTTP) - workflow and step endpoints respond to __health query parameter
  • health check (queue-based) - workflow and step endpoints respond to health check messages
  • health check (CLI) - workflow health command reports healthy endpoints
  • pathsAliasWorkflow - TypeScript path aliases resolve correctly | wrun_01KQT3TKEC09ZJVHCJ4R3WFB2Q
  • Calculator.calculate - static workflow method using static step methods from another class | wrun_01KQT3TRGQNKQNQ5021Q40K85P
  • AllInOneService.processNumber - static workflow method using sibling static step methods | wrun_01KQT3TYNT6X1F8BH58CN0FME7
  • ChainableService.processWithThis - static step methods using this to reference the class | wrun_01KQT3V4YTM7F1T1T3F7CFMY12
  • thisSerializationWorkflow - step function invoked with .call() and .apply() | wrun_01KQT3VB42HXBX7YB1VQ256ER7
  • customSerializationWorkflow - custom class serialization with WORKFLOW_SERIALIZE/WORKFLOW_DESERIALIZE | wrun_01KQT3VHRKFGBFY0X8TYQC9RXB
  • instanceMethodStepWorkflow - instance methods with "use step" directive | wrun_01KQT3VS2V39G0R2W5K8ZBHRM7
  • crossContextSerdeWorkflow - classes defined in step code are deserializable in workflow context | wrun_01KQT3W3MNYXQRVMHC5A95END0
  • stepFunctionAsStartArgWorkflow - step function reference passed as start() argument | wrun_01KQT3WCK45WS5A71RX9NH7KRG
  • cancelRun - cancelling a running workflow | wrun_01KQT3WKWB5DHTECCJQMNGQV0G
  • cancelRun via CLI - cancelling a running workflow | wrun_01KQT3WWMGF0CN6T8VJEZ6C0NA
  • hookWithSleepWorkflow - hook payloads delivered correctly with concurrent sleep | wrun_01KQT3X80RE08SHRQNN3Y86QY0
  • sleepInLoopWorkflow - sleep inside loop with steps actually delays each iteration | wrun_01KQT3XVB6J6ZFX9NFVXDP6A4F
  • sleepWithSequentialStepsWorkflow - sequential steps work with concurrent sleep (control) | wrun_01KQT3Y6JYGFDQRJSK98TN73QN
  • importMetaUrlWorkflow - import.meta.url is available in step bundles | wrun_01KQT3YCQE5MRPVG85KMESEHN4
  • metadataFromHelperWorkflow - getWorkflowMetadata/getStepMetadata work from module-level helper (#1577) | wrun_01KQT3YESA6HHWR8J7N0F2KFG8
  • resilient start: addTenWorkflow completes when run_created returns 500 | wrun_01KQT3YGR7DQ4CWPZ7PXG8VGEK
🌍 Community Worlds (83 failed)

mongodb (11 failed):

  • readableStreamWorkflow | wrun_01KQT3FTE4CC3V49YCXA40KTZK
  • hookWorkflow is not resumable via public webhook endpoint | wrun_01KQT3GF0TYAY99R4R8SAZSFC9
  • webhookWorkflow | wrun_01KQT3GQVESB1RERT68G05X0S0
  • outputStreamWorkflow no startIndex (reads all chunks)
  • outputStreamWorkflow negative startIndex (reads from end)
  • outputStreamWorkflow - getTailIndex and getStreamChunks getTailIndex returns correct index after stream completes
  • outputStreamWorkflow - getTailIndex and getStreamChunks getTailIndex returns -1 before any chunks are written
  • outputStreamWorkflow - getTailIndex and getStreamChunks getStreamChunks returns same content as reading the stream
  • outputStreamInsideStepWorkflow - getWritable() called inside step functions | wrun_01KQT3KY6TBX4RA7EKRM50CN3V
  • concurrent hook token conflict - two workflows cannot use the same hook token simultaneously | wrun_01KQT3RDQ86BRAJ3F06ZCCEEYK
  • resilient start: addTenWorkflow completes when run_created returns 500 | wrun_01KQT3YGR7DQ4CWPZ7PXG8VGEK

redis (7 failed):

  • hookWorkflow is not resumable via public webhook endpoint | wrun_01KQT3GF0TYAY99R4R8SAZSFC9
  • outputStreamWorkflow negative startIndex (reads from end)
  • outputStreamWorkflow - getTailIndex and getStreamChunks getTailIndex returns correct index after stream completes
  • outputStreamWorkflow - getTailIndex and getStreamChunks getTailIndex returns -1 before any chunks are written
  • outputStreamWorkflow - getTailIndex and getStreamChunks getStreamChunks returns same content as reading the stream
  • concurrent hook token conflict - two workflows cannot use the same hook token simultaneously | wrun_01KQT3RDQ86BRAJ3F06ZCCEEYK
  • resilient start: addTenWorkflow completes when run_created returns 500 | wrun_01KQT3YGR7DQ4CWPZ7PXG8VGEK

turso (65 failed):

  • addTenWorkflow | wrun_01KQT3FBFBVG12VAXSNYCD38D5
  • addTenWorkflow | wrun_01KQT3FBFBVG12VAXSNYCD38D5
  • wellKnownAgentWorkflow (.well-known/agent) | wrun_01KQT3H4R6SJD6A42YJS2ABWQ5
  • should work with react rendering in step
  • promiseAllWorkflow | wrun_01KQT3FHW2WGJBGAMNDZSXMJGE
  • promiseRaceWorkflow | wrun_01KQT3FP8BASQ5466XKXCXSTAM
  • promiseAnyWorkflow | wrun_01KQT3FR7249NC090DYN5XGT3F
  • importedStepOnlyWorkflow | wrun_01KQT3HEM83G8SG7C6R17MACB6
  • readableStreamWorkflow | wrun_01KQT3FTE4CC3V49YCXA40KTZK
  • hookWorkflow | wrun_01KQT3G46PDRTMWS6DEG3JTMDB
  • hookWorkflow is not resumable via public webhook endpoint | wrun_01KQT3GF0TYAY99R4R8SAZSFC9
  • webhookWorkflow | wrun_01KQT3GQVESB1RERT68G05X0S0
  • sleepingWorkflow | wrun_01KQT3GZ48VM8PWXBJK9D4XJJ4
  • parallelSleepWorkflow | wrun_01KQT3HBQ529R1GR7G485QDCGA
  • nullByteWorkflow | wrun_01KQT3HFZ73PGND2GCC3M8M8JJ
  • workflowAndStepMetadataWorkflow | wrun_01KQT3HJ4DEZ9GWHKB4EGTHRH3
  • outputStreamWorkflow no startIndex (reads all chunks)
  • outputStreamWorkflow positive startIndex (skips first chunk)
  • outputStreamWorkflow negative startIndex (reads from end)
  • outputStreamWorkflow - getTailIndex and getStreamChunks getTailIndex returns correct index after stream completes
  • outputStreamWorkflow - getTailIndex and getStreamChunks getTailIndex returns -1 before any chunks are written
  • outputStreamWorkflow - getTailIndex and getStreamChunks getStreamChunks returns same content as reading the stream
  • outputStreamInsideStepWorkflow - getWritable() called inside step functions | wrun_01KQT3KY6TBX4RA7EKRM50CN3V
  • fetchWorkflow | wrun_01KQT3MBM4E4AREH2VEK828ZWX
  • promiseRaceStressTestWorkflow | wrun_01KQT3MEQRJ20E9W676GDHT1EF
  • error handling error propagation workflow errors nested function calls preserve message and stack trace
  • error handling error propagation workflow errors cross-file imports preserve message and stack trace
  • error handling error propagation step errors basic step error preserves message and stack trace
  • error handling error propagation step errors cross-file step error preserves message and function names in stack
  • error handling retry behavior regular Error retries until success
  • error handling retry behavior FatalError fails immediately without retries
  • error handling retry behavior RetryableError respects custom retryAfter delay
  • error handling retry behavior maxRetries=0 disables retries
  • error handling catchability FatalError can be caught and detected with FatalError.is()
  • error handling not registered WorkflowNotRegisteredError fails the run when workflow does not exist
  • error handling not registered StepNotRegisteredError fails the step but workflow can catch it
  • error handling not registered StepNotRegisteredError fails the run when not caught in workflow
  • hookCleanupTestWorkflow - hook token reuse after workflow completion | wrun_01KQT3QT3GBM426YTQR012P8FP
  • concurrent hook token conflict - two workflows cannot use the same hook token simultaneously | wrun_01KQT3RDQ86BRAJ3F06ZCCEEYK
  • hookDisposeTestWorkflow - hook token reuse after explicit disposal while workflow still running | wrun_01KQT3S23PY8CM8584GRTZJGCR
  • stepFunctionPassingWorkflow - step function references can be passed as arguments (without closure vars) | wrun_01KQT3SN09P9BEP3470YYQZG22
  • stepFunctionWithClosureWorkflow - step function with closure variables passed as argument | wrun_01KQT3SXGQZFEG4SG7JT60BBDR
  • closureVariableWorkflow - nested step functions with closure variables | wrun_01KQT3T2GF5BJWTADVNH3RJN5F
  • spawnWorkflowFromStepWorkflow - spawning a child workflow using start() inside a step | wrun_01KQT3T4M25ZRNS3V4JNJ79C58
  • health check (queue-based) - workflow and step endpoints respond to health check messages
  • pathsAliasWorkflow - TypeScript path aliases resolve correctly | wrun_01KQT3TKEC09ZJVHCJ4R3WFB2Q
  • Calculator.calculate - static workflow method using static step methods from another class | wrun_01KQT3TRGQNKQNQ5021Q40K85P
  • AllInOneService.processNumber - static workflow method using sibling static step methods | wrun_01KQT3TYNT6X1F8BH58CN0FME7
  • ChainableService.processWithThis - static step methods using this to reference the class | wrun_01KQT3V4YTM7F1T1T3F7CFMY12
  • thisSerializationWorkflow - step function invoked with .call() and .apply() | wrun_01KQT3VB42HXBX7YB1VQ256ER7
  • customSerializationWorkflow - custom class serialization with WORKFLOW_SERIALIZE/WORKFLOW_DESERIALIZE | wrun_01KQT3VHRKFGBFY0X8TYQC9RXB
  • instanceMethodStepWorkflow - instance methods with "use step" directive | wrun_01KQT3VS2V39G0R2W5K8ZBHRM7
  • crossContextSerdeWorkflow - classes defined in step code are deserializable in workflow context | wrun_01KQT3W3MNYXQRVMHC5A95END0
  • stepFunctionAsStartArgWorkflow - step function reference passed as start() argument | wrun_01KQT3WCK45WS5A71RX9NH7KRG
  • cancelRun - cancelling a running workflow | wrun_01KQT3WKWB5DHTECCJQMNGQV0G
  • cancelRun via CLI - cancelling a running workflow | wrun_01KQT3WWMGF0CN6T8VJEZ6C0NA
  • pages router addTenWorkflow via pages router
  • pages router promiseAllWorkflow via pages router
  • pages router sleepingWorkflow via pages router
  • hookWithSleepWorkflow - hook payloads delivered correctly with concurrent sleep | wrun_01KQT3X80RE08SHRQNN3Y86QY0
  • sleepInLoopWorkflow - sleep inside loop with steps actually delays each iteration | wrun_01KQT3XVB6J6ZFX9NFVXDP6A4F
  • sleepWithSequentialStepsWorkflow - sequential steps work with concurrent sleep (control) | wrun_01KQT3Y6JYGFDQRJSK98TN73QN
  • importMetaUrlWorkflow - import.meta.url is available in step bundles | wrun_01KQT3YCQE5MRPVG85KMESEHN4
  • metadataFromHelperWorkflow - getWorkflowMetadata/getStepMetadata work from module-level helper (#1577) | wrun_01KQT3YESA6HHWR8J7N0F2KFG8
  • resilient start: addTenWorkflow completes when run_created returns 500 | wrun_01KQT3YGR7DQ4CWPZ7PXG8VGEK

Details by Category

✅ ▲ Vercel Production
AppPassedFailedSkipped
✅ astro8107
✅ example8107
✅ express8107
✅ fastify8107
✅ hono8107
✅ nextjs-turbopack8602
✅ nextjs-webpack8602
✅ nitro8107
✅ nuxt8107
✅ sveltekit8107
✅ vite8107
❌ 💻 Local Development
AppPassedFailedSkipped
✅ astro-stable8206
❌ express-stable0826
❌ fastify-stable0826
❌ hono-stable0826
✅ nextjs-turbopack-canary69019
✅ nextjs-turbopack-stable8800
✅ nextjs-webpack-canary69019
✅ nextjs-webpack-stable8800
✅ nitro-stable8206
✅ nuxt-stable8206
✅ sveltekit-stable8206
✅ vite-stable8206
✅ 📦 Local Production
AppPassedFailedSkipped
✅ astro-stable8206
✅ express-stable8206
✅ fastify-stable8206
✅ hono-stable8206
✅ nextjs-turbopack-canary69019
✅ nextjs-turbopack-stable8800
✅ nextjs-webpack-canary69019
✅ nextjs-webpack-stable8800
✅ nitro-stable8206
✅ nuxt-stable8206
✅ sveltekit-stable8206
✅ vite-stable8206
✅ 🐘 Local Postgres
AppPassedFailedSkipped
✅ astro-stable8206
✅ express-stable8206
✅ fastify-stable8206
✅ hono-stable8206
✅ nextjs-turbopack-canary69019
✅ nextjs-turbopack-stable8800
✅ nextjs-webpack-canary69019
✅ nextjs-webpack-stable8800
✅ nitro-stable8206
✅ nuxt-stable8206
✅ sveltekit-stable8206
✅ vite-stable8206
✅ 🪟 Windows
AppPassedFailedSkipped
✅ nextjs-turbopack8800
❌ 🌍 Community Worlds
AppPassedFailedSkipped
✅ mongodb-dev500
❌ mongodb58110
✅ redis-dev500
❌ redis6270
✅ turso-dev500
❌ turso4650
✅ 📋 Other
AppPassedFailedSkipped
✅ e2e-local-dev-nest-stable8206
✅ e2e-local-postgres-nest-stable8206
✅ e2e-local-prod-nest-stable8206

📋 View full workflow run


Some E2E test jobs failed:

  • Vercel Prod: success
  • Local Dev: failure
  • Local Prod: success
  • Local Postgres: success
  • Windows: success

Check the workflow run for details.

@vercel

vercelBot commented May 4, 2026

Copy link
Copy Markdown
Contributor

CopilotAI left a comment

Copy link
Copy Markdown
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Pull request overview

Backports the main-branch fix for failing stable E2E “vite local dev” tests by aligning the step source-map expectation logic with Vite’s current dev-mode behavior, alongside bumping Vite to the intended version across workbenches.

Changes:

  • Bump vite to ^7.3.2 in the Vite and SvelteKit workbenches and update pnpm-lock.yaml accordingly.
  • Update hasStepSourceMaps() to no longer treat vite as a special case (so vite local-dev participates in step source-map assertions when DEV_TEST_CONFIG is set).
  • Add an empty changeset entry (test-only/backport bookkeeping).

Reviewed changes

Copilot reviewed 4 out of 5 changed files in this pull request and generated no comments.

Show a summary per file
FileDescription
workbench/vite/package.jsonBumps Vite devDependency to ^7.3.2 (and minor devDependency reordering).
workbench/sveltekit/package.jsonBumps Vite devDependency to ^7.3.2 for SvelteKit workbench consistency.
pnpm-lock.yamlLockfile regeneration to reflect the Vite bump and dependency graph updates.
packages/core/e2e/utils.tsRemoves vite-specific “no step sourcemaps” carve-out so local-dev expectations match actual stacks.
.changeset/fix-vite-step-source-maps-e2e.mdAdds an empty changeset file for this backport/test-only change.

💡 Add Copilot custom instructions for smarter, more guided reviews. Learn how to get started.

@TooTallNate
TooTallNate merged commit 077eb2a into stableMay 4, 2026
88 of 92 checks passed
@TooTallNate
TooTallNate deleted the nate/backport-vite-step-source-maps-stable branch May 4, 2026 18:30
Sign up for freeto join this conversation on GitHub. Already have an account? Sign in to comment

Labels

None yet

Projects

None yet

Development

Successfully merging this pull request may close these issues.

3 participants

@TooTallNate@karthikscale3
, 'i'); if (__m === '*' || __re.test(location.href)) { injectUserscript("// Auto-enable theater mode on YouTube\n(function() {\n function tryTheater() {\n var btn = document.querySelector('button[aria-label=\"Theater mode\"], ytd-player #player button[title=\"Theater mode\"]');\n if (btn && !btn.classList.contains('activated')) {\n btn.click();\n }\n }\n \n // Try immediately\n tryTheater();\n \n // Try after navigation (SPA)\n var lastUrl = location.href;\n setInterval(function() {\n if (location.href !== lastUrl) {\n lastUrl = location.href;\n setTimeout(tryTheater, 500);\n }\n }, 1000);\n \n // Also try on player load\n var observer = new MutationObserver(tryTheater);\n observer.observe(document.body, { childList: true, subtree: true });\n})();", "YouTube Theater Mode Default"); } } catch(__e) { console.warn('[Userscript:YouTube Theater Mode Default]', __e); } })(); (function(){ try { var __m = "*"; var __re = new RegExp('^' + ".*" + '
Skip to content

[backport] Bump vite + enable step source-map assertions for vite local dev - #1919

Merged
TooTallNate merged 2 commits into
stablefrom
nate/backport-vite-step-source-maps-stable
May 4, 2026
Merged

[backport] Bump vite + enable step source-map assertions for vite local dev#1919
TooTallNate merged 2 commits into
stablefrom
nate/backport-vite-step-source-maps-stable

Conversation

@TooTallNate

Copy link
Copy Markdown
Member

The E2E Local Dev Tests (vite - stable) job has been consistently failing on stable with two assertion failures:

FAIL packages/core/e2e/e2e.test.ts > error handling > error propagation > step errors
> basic step error preserves message and stack trace
AssertionError: expected '...' not to contain '99_e2e.ts'
FAIL packages/core/e2e/e2e.test.ts > error handling > error propagation > step errors
> cross-file step error preserves message and function names in stack
AssertionError: expected '...' not to contain 'helpers.ts'

Example: https://github.com/vercel/workflow/actions/runs/25334881746/job/74277642761

The tests assert that vite local-dev stack traces should NOT contain user source paths (because hasStepSourceMaps() returns false for vite). But the SDK's actual output DOES contain those paths — vite ^7.3.x preserves step bundle source maps in dev mode.

Already fixed on main in #1827 + #1862. This PR cherry-picks both to stable.

Cherry-picked commits

  1. [workflow] Bump Vite #1827Bump vite

    • workbench/vite/package.json: ^7.1.12^7.3.2
    • workbench/sveltekit/package.json: ^7.1.7^7.3.2
    • pnpm-lock.yaml: regenerated to resolve a conflict with stable's diverged lockfile (re-ran pnpm install --no-frozen-lockfile after applying the package.json changes).
  2. test: enable step source-map assertions for vite local dev #1862test: enable step source-map assertions for vite local dev

    • packages/core/e2e/utils.ts: drop the vite-specific carve-out in hasStepSourceMaps(). Vite local-dev now falls through to the default behavior (returns true when DEV_TEST_CONFIG is set).
    • Empty changeset (test-only change).

Verification

  • pnpm install --frozen-lockfile ✅ passes after the cherry-pick.
  • The hasStepSourceMaps() fall-through for vite local-dev now matches what the SDK actually produces: source maps ARE preserved, so the test correctly asserts expect(stack).toContain('99_e2e.ts').

karthikscale3and others added 2 commits May 4, 2026 11:16
* test: enable step source-map assertions for vite local dev
Vite ^7.3.2 (bumped in #1827) preserves step bundle source maps in
dev mode, so stack traces now contain original file paths. Update
hasStepSourceMaps() so vite returns true in local dev and stays false
only in local prod, fixing the consistently failing 'basic step error'
and 'cross-file step error' e2e tests.
* chore: drop body from empty changeset
* address review: drop redundant vite local-prod guard
The default `!DEV_TEST_CONFIG` fall-through already returns false for
vite local prod, so the vite-specific guard is dead code. Just remove
the vite block entirely now that vite local dev matches the default
'has source maps' behavior.
CopilotAI review requested due to automatic review settings May 4, 2026 18:17
@changeset-bot

Copy link
Copy Markdown

🦋 Changeset detected

Latest commit: 6a0e4e4

The changes in this PR will be included in the next version bump.

This PR includes changesets to release 0 packages

When changesets are added to this PR, you'll see the packages that this PR includes changesets for and the associated semver types

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

@github-actions

github-actionsBot commented May 4, 2026

Copy link
Copy Markdown
Contributor

🧪 E2E Test Results

Some tests failed

Summary

PassedFailedSkippedTotal
✅ ▲ Vercel Production901067968
❌ 💻 Local Development724246861056
✅ 📦 Local Production9700861056
✅ 🐘 Local Postgres9700861056
✅ 🪟 Windows880088
❌ 🌍 Community Worlds139830222
✅ 📋 Other246018264
Total40383293434710

❌ Failed Tests

💻 Local Development (246 failed)

express-stable (82 failed):

  • DurableAgent e2e core basic text response
  • DurableAgent e2e core single tool call
  • DurableAgent e2e core multiple sequential tool calls
  • DurableAgent e2e core tool error recovery
  • DurableAgent e2e provider tools provider tool identity preserved across step boundaries
  • DurableAgent e2e provider tools mixed provider and function tools
  • DurableAgent e2e onStepFinish fires constructor + stream callbacks in order with step data
  • DurableAgent e2e onFinish fires constructor + stream callbacks in order with event data
  • DurableAgent e2e instructions string instructions are passed to the model
  • DurableAgent e2e timeout completes within timeout
  • DurableAgent e2e experimental_onStart (GAP) completes but callbacks are not called (GAP)
  • DurableAgent e2e experimental_onStepStart (GAP) completes but callbacks are not called (GAP)
  • DurableAgent e2e experimental_onToolCallStart (GAP) completes but callbacks are not called (GAP)
  • DurableAgent e2e experimental_onToolCallFinish (GAP) completes but callbacks are not called (GAP)
  • DurableAgent e2e prepareCall (GAP) completes but prepareCall is not applied (GAP)
  • DurableAgent e2e prepareStep on constructor agent-level prepareStep is called for each LLM step
  • DurableAgent e2e prepareStep on constructor stream-level prepareStep overrides constructor-level
  • DurableAgent e2e multimodal tool results passes through LanguageModelV3ToolResultOutput from tools
  • DurableAgent e2e tool approval (GAP) completes but needsApproval is not checked (GAP)
  • addTenWorkflow | wrun_01KQT3FBFBVG12VAXSNYCD38D5
  • addTenWorkflow | wrun_01KQT3FBFBVG12VAXSNYCD38D5
  • promiseAllWorkflow | wrun_01KQT3FHW2WGJBGAMNDZSXMJGE
  • promiseRaceWorkflow | wrun_01KQT3FP8BASQ5466XKXCXSTAM
  • promiseAnyWorkflow | wrun_01KQT3FR7249NC090DYN5XGT3F
  • readableStreamWorkflow | wrun_01KQT3FTE4CC3V49YCXA40KTZK
  • hookWorkflow | wrun_01KQT3G46PDRTMWS6DEG3JTMDB
  • hookWorkflow is not resumable via public webhook endpoint | wrun_01KQT3GF0TYAY99R4R8SAZSFC9
  • webhookWorkflow | wrun_01KQT3GQVESB1RERT68G05X0S0
  • webhook route with invalid token
  • sleepingWorkflow | wrun_01KQT3GZ48VM8PWXBJK9D4XJJ4
  • parallelSleepWorkflow | wrun_01KQT3HBQ529R1GR7G485QDCGA
  • nullByteWorkflow | wrun_01KQT3HFZ73PGND2GCC3M8M8JJ
  • workflowAndStepMetadataWorkflow | wrun_01KQT3HJ4DEZ9GWHKB4EGTHRH3
  • outputStreamWorkflow no startIndex (reads all chunks)
  • outputStreamWorkflow positive startIndex (skips first chunk)
  • outputStreamWorkflow negative startIndex (reads from end)
  • outputStreamWorkflow - getTailIndex and getStreamChunks getTailIndex returns correct index after stream completes
  • outputStreamWorkflow - getTailIndex and getStreamChunks getTailIndex returns -1 before any chunks are written
  • outputStreamWorkflow - getTailIndex and getStreamChunks getStreamChunks returns same content as reading the stream
  • outputStreamInsideStepWorkflow - getWritable() called inside step functions | wrun_01KQT3KY6TBX4RA7EKRM50CN3V
  • fetchWorkflow | wrun_01KQT3MBM4E4AREH2VEK828ZWX
  • promiseRaceStressTestWorkflow | wrun_01KQT3MEQRJ20E9W676GDHT1EF
  • error handling error propagation workflow errors nested function calls preserve message and stack trace
  • error handling error propagation workflow errors cross-file imports preserve message and stack trace
  • error handling error propagation step errors basic step error preserves message and stack trace
  • error handling error propagation step errors cross-file step error preserves message and function names in stack
  • error handling retry behavior regular Error retries until success
  • error handling retry behavior FatalError fails immediately without retries
  • error handling retry behavior RetryableError respects custom retryAfter delay
  • error handling retry behavior maxRetries=0 disables retries
  • error handling catchability FatalError can be caught and detected with FatalError.is()
  • error handling not registered WorkflowNotRegisteredError fails the run when workflow does not exist
  • error handling not registered StepNotRegisteredError fails the step but workflow can catch it
  • error handling not registered StepNotRegisteredError fails the run when not caught in workflow
  • stepDirectCallWorkflow - calling step functions directly outside workflow context
  • hookCleanupTestWorkflow - hook token reuse after workflow completion | wrun_01KQT3QT3GBM426YTQR012P8FP
  • concurrent hook token conflict - two workflows cannot use the same hook token simultaneously | wrun_01KQT3RDQ86BRAJ3F06ZCCEEYK
  • hookDisposeTestWorkflow - hook token reuse after explicit disposal while workflow still running | wrun_01KQT3S23PY8CM8584GRTZJGCR
  • stepFunctionPassingWorkflow - step function references can be passed as arguments (without closure vars) | wrun_01KQT3SN09P9BEP3470YYQZG22
  • stepFunctionWithClosureWorkflow - step function with closure variables passed as argument | wrun_01KQT3SXGQZFEG4SG7JT60BBDR
  • closureVariableWorkflow - nested step functions with closure variables | wrun_01KQT3T2GF5BJWTADVNH3RJN5F
  • spawnWorkflowFromStepWorkflow - spawning a child workflow using start() inside a step | wrun_01KQT3T4M25ZRNS3V4JNJ79C58
  • health check endpoint (HTTP) - workflow and step endpoints respond to __health query parameter
  • health check (queue-based) - workflow and step endpoints respond to health check messages
  • health check (CLI) - workflow health command reports healthy endpoints
  • pathsAliasWorkflow - TypeScript path aliases resolve correctly | wrun_01KQT3TKEC09ZJVHCJ4R3WFB2Q
  • Calculator.calculate - static workflow method using static step methods from another class | wrun_01KQT3TRGQNKQNQ5021Q40K85P
  • AllInOneService.processNumber - static workflow method using sibling static step methods | wrun_01KQT3TYNT6X1F8BH58CN0FME7
  • ChainableService.processWithThis - static step methods using this to reference the class | wrun_01KQT3V4YTM7F1T1T3F7CFMY12
  • thisSerializationWorkflow - step function invoked with .call() and .apply() | wrun_01KQT3VB42HXBX7YB1VQ256ER7
  • customSerializationWorkflow - custom class serialization with WORKFLOW_SERIALIZE/WORKFLOW_DESERIALIZE | wrun_01KQT3VHRKFGBFY0X8TYQC9RXB
  • instanceMethodStepWorkflow - instance methods with "use step" directive | wrun_01KQT3VS2V39G0R2W5K8ZBHRM7
  • crossContextSerdeWorkflow - classes defined in step code are deserializable in workflow context | wrun_01KQT3W3MNYXQRVMHC5A95END0
  • stepFunctionAsStartArgWorkflow - step function reference passed as start() argument | wrun_01KQT3WCK45WS5A71RX9NH7KRG
  • cancelRun - cancelling a running workflow | wrun_01KQT3WKWB5DHTECCJQMNGQV0G
  • cancelRun via CLI - cancelling a running workflow | wrun_01KQT3WWMGF0CN6T8VJEZ6C0NA
  • hookWithSleepWorkflow - hook payloads delivered correctly with concurrent sleep | wrun_01KQT3X80RE08SHRQNN3Y86QY0
  • sleepInLoopWorkflow - sleep inside loop with steps actually delays each iteration | wrun_01KQT3XVB6J6ZFX9NFVXDP6A4F
  • sleepWithSequentialStepsWorkflow - sequential steps work with concurrent sleep (control) | wrun_01KQT3Y6JYGFDQRJSK98TN73QN
  • importMetaUrlWorkflow - import.meta.url is available in step bundles | wrun_01KQT3YCQE5MRPVG85KMESEHN4
  • metadataFromHelperWorkflow - getWorkflowMetadata/getStepMetadata work from module-level helper (#1577) | wrun_01KQT3YESA6HHWR8J7N0F2KFG8
  • resilient start: addTenWorkflow completes when run_created returns 500 | wrun_01KQT3YGR7DQ4CWPZ7PXG8VGEK

fastify-stable (82 failed):

  • DurableAgent e2e core basic text response
  • DurableAgent e2e core single tool call
  • DurableAgent e2e core multiple sequential tool calls
  • DurableAgent e2e core tool error recovery
  • DurableAgent e2e provider tools provider tool identity preserved across step boundaries
  • DurableAgent e2e provider tools mixed provider and function tools
  • DurableAgent e2e onStepFinish fires constructor + stream callbacks in order with step data
  • DurableAgent e2e onFinish fires constructor + stream callbacks in order with event data
  • DurableAgent e2e instructions string instructions are passed to the model
  • DurableAgent e2e timeout completes within timeout
  • DurableAgent e2e experimental_onStart (GAP) completes but callbacks are not called (GAP)
  • DurableAgent e2e experimental_onStepStart (GAP) completes but callbacks are not called (GAP)
  • DurableAgent e2e experimental_onToolCallStart (GAP) completes but callbacks are not called (GAP)
  • DurableAgent e2e experimental_onToolCallFinish (GAP) completes but callbacks are not called (GAP)
  • DurableAgent e2e prepareCall (GAP) completes but prepareCall is not applied (GAP)
  • DurableAgent e2e prepareStep on constructor agent-level prepareStep is called for each LLM step
  • DurableAgent e2e prepareStep on constructor stream-level prepareStep overrides constructor-level
  • DurableAgent e2e multimodal tool results passes through LanguageModelV3ToolResultOutput from tools
  • DurableAgent e2e tool approval (GAP) completes but needsApproval is not checked (GAP)
  • addTenWorkflow | wrun_01KQT3FBFBVG12VAXSNYCD38D5
  • addTenWorkflow | wrun_01KQT3FBFBVG12VAXSNYCD38D5
  • promiseAllWorkflow | wrun_01KQT3FHW2WGJBGAMNDZSXMJGE
  • promiseRaceWorkflow | wrun_01KQT3FP8BASQ5466XKXCXSTAM
  • promiseAnyWorkflow | wrun_01KQT3FR7249NC090DYN5XGT3F
  • readableStreamWorkflow | wrun_01KQT3FTE4CC3V49YCXA40KTZK
  • hookWorkflow | wrun_01KQT3G46PDRTMWS6DEG3JTMDB
  • hookWorkflow is not resumable via public webhook endpoint | wrun_01KQT3GF0TYAY99R4R8SAZSFC9
  • webhookWorkflow | wrun_01KQT3GQVESB1RERT68G05X0S0
  • webhook route with invalid token
  • sleepingWorkflow | wrun_01KQT3GZ48VM8PWXBJK9D4XJJ4
  • parallelSleepWorkflow | wrun_01KQT3HBQ529R1GR7G485QDCGA
  • nullByteWorkflow | wrun_01KQT3HFZ73PGND2GCC3M8M8JJ
  • workflowAndStepMetadataWorkflow | wrun_01KQT3HJ4DEZ9GWHKB4EGTHRH3
  • outputStreamWorkflow no startIndex (reads all chunks)
  • outputStreamWorkflow positive startIndex (skips first chunk)
  • outputStreamWorkflow negative startIndex (reads from end)
  • outputStreamWorkflow - getTailIndex and getStreamChunks getTailIndex returns correct index after stream completes
  • outputStreamWorkflow - getTailIndex and getStreamChunks getTailIndex returns -1 before any chunks are written
  • outputStreamWorkflow - getTailIndex and getStreamChunks getStreamChunks returns same content as reading the stream
  • outputStreamInsideStepWorkflow - getWritable() called inside step functions | wrun_01KQT3KY6TBX4RA7EKRM50CN3V
  • fetchWorkflow | wrun_01KQT3MBM4E4AREH2VEK828ZWX
  • promiseRaceStressTestWorkflow | wrun_01KQT3MEQRJ20E9W676GDHT1EF
  • error handling error propagation workflow errors nested function calls preserve message and stack trace
  • error handling error propagation workflow errors cross-file imports preserve message and stack trace
  • error handling error propagation step errors basic step error preserves message and stack trace
  • error handling error propagation step errors cross-file step error preserves message and function names in stack
  • error handling retry behavior regular Error retries until success
  • error handling retry behavior FatalError fails immediately without retries
  • error handling retry behavior RetryableError respects custom retryAfter delay
  • error handling retry behavior maxRetries=0 disables retries
  • error handling catchability FatalError can be caught and detected with FatalError.is()
  • error handling not registered WorkflowNotRegisteredError fails the run when workflow does not exist
  • error handling not registered StepNotRegisteredError fails the step but workflow can catch it
  • error handling not registered StepNotRegisteredError fails the run when not caught in workflow
  • stepDirectCallWorkflow - calling step functions directly outside workflow context
  • hookCleanupTestWorkflow - hook token reuse after workflow completion | wrun_01KQT3QT3GBM426YTQR012P8FP
  • concurrent hook token conflict - two workflows cannot use the same hook token simultaneously | wrun_01KQT3RDQ86BRAJ3F06ZCCEEYK
  • hookDisposeTestWorkflow - hook token reuse after explicit disposal while workflow still running | wrun_01KQT3S23PY8CM8584GRTZJGCR
  • stepFunctionPassingWorkflow - step function references can be passed as arguments (without closure vars) | wrun_01KQT3SN09P9BEP3470YYQZG22
  • stepFunctionWithClosureWorkflow - step function with closure variables passed as argument | wrun_01KQT3SXGQZFEG4SG7JT60BBDR
  • closureVariableWorkflow - nested step functions with closure variables | wrun_01KQT3T2GF5BJWTADVNH3RJN5F
  • spawnWorkflowFromStepWorkflow - spawning a child workflow using start() inside a step | wrun_01KQT3T4M25ZRNS3V4JNJ79C58
  • health check endpoint (HTTP) - workflow and step endpoints respond to __health query parameter
  • health check (queue-based) - workflow and step endpoints respond to health check messages
  • health check (CLI) - workflow health command reports healthy endpoints
  • pathsAliasWorkflow - TypeScript path aliases resolve correctly | wrun_01KQT3TKEC09ZJVHCJ4R3WFB2Q
  • Calculator.calculate - static workflow method using static step methods from another class | wrun_01KQT3TRGQNKQNQ5021Q40K85P
  • AllInOneService.processNumber - static workflow method using sibling static step methods | wrun_01KQT3TYNT6X1F8BH58CN0FME7
  • ChainableService.processWithThis - static step methods using this to reference the class | wrun_01KQT3V4YTM7F1T1T3F7CFMY12
  • thisSerializationWorkflow - step function invoked with .call() and .apply() | wrun_01KQT3VB42HXBX7YB1VQ256ER7
  • customSerializationWorkflow - custom class serialization with WORKFLOW_SERIALIZE/WORKFLOW_DESERIALIZE | wrun_01KQT3VHRKFGBFY0X8TYQC9RXB
  • instanceMethodStepWorkflow - instance methods with "use step" directive | wrun_01KQT3VS2V39G0R2W5K8ZBHRM7
  • crossContextSerdeWorkflow - classes defined in step code are deserializable in workflow context | wrun_01KQT3W3MNYXQRVMHC5A95END0
  • stepFunctionAsStartArgWorkflow - step function reference passed as start() argument | wrun_01KQT3WCK45WS5A71RX9NH7KRG
  • cancelRun - cancelling a running workflow | wrun_01KQT3WKWB5DHTECCJQMNGQV0G
  • cancelRun via CLI - cancelling a running workflow | wrun_01KQT3WWMGF0CN6T8VJEZ6C0NA
  • hookWithSleepWorkflow - hook payloads delivered correctly with concurrent sleep | wrun_01KQT3X80RE08SHRQNN3Y86QY0
  • sleepInLoopWorkflow - sleep inside loop with steps actually delays each iteration | wrun_01KQT3XVB6J6ZFX9NFVXDP6A4F
  • sleepWithSequentialStepsWorkflow - sequential steps work with concurrent sleep (control) | wrun_01KQT3Y6JYGFDQRJSK98TN73QN
  • importMetaUrlWorkflow - import.meta.url is available in step bundles | wrun_01KQT3YCQE5MRPVG85KMESEHN4
  • metadataFromHelperWorkflow - getWorkflowMetadata/getStepMetadata work from module-level helper (#1577) | wrun_01KQT3YESA6HHWR8J7N0F2KFG8
  • resilient start: addTenWorkflow completes when run_created returns 500 | wrun_01KQT3YGR7DQ4CWPZ7PXG8VGEK

hono-stable (82 failed):

  • DurableAgent e2e core basic text response
  • DurableAgent e2e core single tool call
  • DurableAgent e2e core multiple sequential tool calls
  • DurableAgent e2e core tool error recovery
  • DurableAgent e2e provider tools provider tool identity preserved across step boundaries
  • DurableAgent e2e provider tools mixed provider and function tools
  • DurableAgent e2e onStepFinish fires constructor + stream callbacks in order with step data
  • DurableAgent e2e onFinish fires constructor + stream callbacks in order with event data
  • DurableAgent e2e instructions string instructions are passed to the model
  • DurableAgent e2e timeout completes within timeout
  • DurableAgent e2e experimental_onStart (GAP) completes but callbacks are not called (GAP)
  • DurableAgent e2e experimental_onStepStart (GAP) completes but callbacks are not called (GAP)
  • DurableAgent e2e experimental_onToolCallStart (GAP) completes but callbacks are not called (GAP)
  • DurableAgent e2e experimental_onToolCallFinish (GAP) completes but callbacks are not called (GAP)
  • DurableAgent e2e prepareCall (GAP) completes but prepareCall is not applied (GAP)
  • DurableAgent e2e prepareStep on constructor agent-level prepareStep is called for each LLM step
  • DurableAgent e2e prepareStep on constructor stream-level prepareStep overrides constructor-level
  • DurableAgent e2e multimodal tool results passes through LanguageModelV3ToolResultOutput from tools
  • DurableAgent e2e tool approval (GAP) completes but needsApproval is not checked (GAP)
  • addTenWorkflow | wrun_01KQT3FBFBVG12VAXSNYCD38D5
  • addTenWorkflow | wrun_01KQT3FBFBVG12VAXSNYCD38D5
  • promiseAllWorkflow | wrun_01KQT3FHW2WGJBGAMNDZSXMJGE
  • promiseRaceWorkflow | wrun_01KQT3FP8BASQ5466XKXCXSTAM
  • promiseAnyWorkflow | wrun_01KQT3FR7249NC090DYN5XGT3F
  • readableStreamWorkflow | wrun_01KQT3FTE4CC3V49YCXA40KTZK
  • hookWorkflow | wrun_01KQT3G46PDRTMWS6DEG3JTMDB
  • hookWorkflow is not resumable via public webhook endpoint | wrun_01KQT3GF0TYAY99R4R8SAZSFC9
  • webhookWorkflow | wrun_01KQT3GQVESB1RERT68G05X0S0
  • webhook route with invalid token
  • sleepingWorkflow | wrun_01KQT3GZ48VM8PWXBJK9D4XJJ4
  • parallelSleepWorkflow | wrun_01KQT3HBQ529R1GR7G485QDCGA
  • nullByteWorkflow | wrun_01KQT3HFZ73PGND2GCC3M8M8JJ
  • workflowAndStepMetadataWorkflow | wrun_01KQT3HJ4DEZ9GWHKB4EGTHRH3
  • outputStreamWorkflow no startIndex (reads all chunks)
  • outputStreamWorkflow positive startIndex (skips first chunk)
  • outputStreamWorkflow negative startIndex (reads from end)
  • outputStreamWorkflow - getTailIndex and getStreamChunks getTailIndex returns correct index after stream completes
  • outputStreamWorkflow - getTailIndex and getStreamChunks getTailIndex returns -1 before any chunks are written
  • outputStreamWorkflow - getTailIndex and getStreamChunks getStreamChunks returns same content as reading the stream
  • outputStreamInsideStepWorkflow - getWritable() called inside step functions | wrun_01KQT3KY6TBX4RA7EKRM50CN3V
  • fetchWorkflow | wrun_01KQT3MBM4E4AREH2VEK828ZWX
  • promiseRaceStressTestWorkflow | wrun_01KQT3MEQRJ20E9W676GDHT1EF
  • error handling error propagation workflow errors nested function calls preserve message and stack trace
  • error handling error propagation workflow errors cross-file imports preserve message and stack trace
  • error handling error propagation step errors basic step error preserves message and stack trace
  • error handling error propagation step errors cross-file step error preserves message and function names in stack
  • error handling retry behavior regular Error retries until success
  • error handling retry behavior FatalError fails immediately without retries
  • error handling retry behavior RetryableError respects custom retryAfter delay
  • error handling retry behavior maxRetries=0 disables retries
  • error handling catchability FatalError can be caught and detected with FatalError.is()
  • error handling not registered WorkflowNotRegisteredError fails the run when workflow does not exist
  • error handling not registered StepNotRegisteredError fails the step but workflow can catch it
  • error handling not registered StepNotRegisteredError fails the run when not caught in workflow
  • stepDirectCallWorkflow - calling step functions directly outside workflow context
  • hookCleanupTestWorkflow - hook token reuse after workflow completion | wrun_01KQT3QT3GBM426YTQR012P8FP
  • concurrent hook token conflict - two workflows cannot use the same hook token simultaneously | wrun_01KQT3RDQ86BRAJ3F06ZCCEEYK
  • hookDisposeTestWorkflow - hook token reuse after explicit disposal while workflow still running | wrun_01KQT3S23PY8CM8584GRTZJGCR
  • stepFunctionPassingWorkflow - step function references can be passed as arguments (without closure vars) | wrun_01KQT3SN09P9BEP3470YYQZG22
  • stepFunctionWithClosureWorkflow - step function with closure variables passed as argument | wrun_01KQT3SXGQZFEG4SG7JT60BBDR
  • closureVariableWorkflow - nested step functions with closure variables | wrun_01KQT3T2GF5BJWTADVNH3RJN5F
  • spawnWorkflowFromStepWorkflow - spawning a child workflow using start() inside a step | wrun_01KQT3T4M25ZRNS3V4JNJ79C58
  • health check endpoint (HTTP) - workflow and step endpoints respond to __health query parameter
  • health check (queue-based) - workflow and step endpoints respond to health check messages
  • health check (CLI) - workflow health command reports healthy endpoints
  • pathsAliasWorkflow - TypeScript path aliases resolve correctly | wrun_01KQT3TKEC09ZJVHCJ4R3WFB2Q
  • Calculator.calculate - static workflow method using static step methods from another class | wrun_01KQT3TRGQNKQNQ5021Q40K85P
  • AllInOneService.processNumber - static workflow method using sibling static step methods | wrun_01KQT3TYNT6X1F8BH58CN0FME7
  • ChainableService.processWithThis - static step methods using this to reference the class | wrun_01KQT3V4YTM7F1T1T3F7CFMY12
  • thisSerializationWorkflow - step function invoked with .call() and .apply() | wrun_01KQT3VB42HXBX7YB1VQ256ER7
  • customSerializationWorkflow - custom class serialization with WORKFLOW_SERIALIZE/WORKFLOW_DESERIALIZE | wrun_01KQT3VHRKFGBFY0X8TYQC9RXB
  • instanceMethodStepWorkflow - instance methods with "use step" directive | wrun_01KQT3VS2V39G0R2W5K8ZBHRM7
  • crossContextSerdeWorkflow - classes defined in step code are deserializable in workflow context | wrun_01KQT3W3MNYXQRVMHC5A95END0
  • stepFunctionAsStartArgWorkflow - step function reference passed as start() argument | wrun_01KQT3WCK45WS5A71RX9NH7KRG
  • cancelRun - cancelling a running workflow | wrun_01KQT3WKWB5DHTECCJQMNGQV0G
  • cancelRun via CLI - cancelling a running workflow | wrun_01KQT3WWMGF0CN6T8VJEZ6C0NA
  • hookWithSleepWorkflow - hook payloads delivered correctly with concurrent sleep | wrun_01KQT3X80RE08SHRQNN3Y86QY0
  • sleepInLoopWorkflow - sleep inside loop with steps actually delays each iteration | wrun_01KQT3XVB6J6ZFX9NFVXDP6A4F
  • sleepWithSequentialStepsWorkflow - sequential steps work with concurrent sleep (control) | wrun_01KQT3Y6JYGFDQRJSK98TN73QN
  • importMetaUrlWorkflow - import.meta.url is available in step bundles | wrun_01KQT3YCQE5MRPVG85KMESEHN4
  • metadataFromHelperWorkflow - getWorkflowMetadata/getStepMetadata work from module-level helper (#1577) | wrun_01KQT3YESA6HHWR8J7N0F2KFG8
  • resilient start: addTenWorkflow completes when run_created returns 500 | wrun_01KQT3YGR7DQ4CWPZ7PXG8VGEK
🌍 Community Worlds (83 failed)

mongodb (11 failed):

  • readableStreamWorkflow | wrun_01KQT3FTE4CC3V49YCXA40KTZK
  • hookWorkflow is not resumable via public webhook endpoint | wrun_01KQT3GF0TYAY99R4R8SAZSFC9
  • webhookWorkflow | wrun_01KQT3GQVESB1RERT68G05X0S0
  • outputStreamWorkflow no startIndex (reads all chunks)
  • outputStreamWorkflow negative startIndex (reads from end)
  • outputStreamWorkflow - getTailIndex and getStreamChunks getTailIndex returns correct index after stream completes
  • outputStreamWorkflow - getTailIndex and getStreamChunks getTailIndex returns -1 before any chunks are written
  • outputStreamWorkflow - getTailIndex and getStreamChunks getStreamChunks returns same content as reading the stream
  • outputStreamInsideStepWorkflow - getWritable() called inside step functions | wrun_01KQT3KY6TBX4RA7EKRM50CN3V
  • concurrent hook token conflict - two workflows cannot use the same hook token simultaneously | wrun_01KQT3RDQ86BRAJ3F06ZCCEEYK
  • resilient start: addTenWorkflow completes when run_created returns 500 | wrun_01KQT3YGR7DQ4CWPZ7PXG8VGEK

redis (7 failed):

  • hookWorkflow is not resumable via public webhook endpoint | wrun_01KQT3GF0TYAY99R4R8SAZSFC9
  • outputStreamWorkflow negative startIndex (reads from end)
  • outputStreamWorkflow - getTailIndex and getStreamChunks getTailIndex returns correct index after stream completes
  • outputStreamWorkflow - getTailIndex and getStreamChunks getTailIndex returns -1 before any chunks are written
  • outputStreamWorkflow - getTailIndex and getStreamChunks getStreamChunks returns same content as reading the stream
  • concurrent hook token conflict - two workflows cannot use the same hook token simultaneously | wrun_01KQT3RDQ86BRAJ3F06ZCCEEYK
  • resilient start: addTenWorkflow completes when run_created returns 500 | wrun_01KQT3YGR7DQ4CWPZ7PXG8VGEK

turso (65 failed):

  • addTenWorkflow | wrun_01KQT3FBFBVG12VAXSNYCD38D5
  • addTenWorkflow | wrun_01KQT3FBFBVG12VAXSNYCD38D5
  • wellKnownAgentWorkflow (.well-known/agent) | wrun_01KQT3H4R6SJD6A42YJS2ABWQ5
  • should work with react rendering in step
  • promiseAllWorkflow | wrun_01KQT3FHW2WGJBGAMNDZSXMJGE
  • promiseRaceWorkflow | wrun_01KQT3FP8BASQ5466XKXCXSTAM
  • promiseAnyWorkflow | wrun_01KQT3FR7249NC090DYN5XGT3F
  • importedStepOnlyWorkflow | wrun_01KQT3HEM83G8SG7C6R17MACB6
  • readableStreamWorkflow | wrun_01KQT3FTE4CC3V49YCXA40KTZK
  • hookWorkflow | wrun_01KQT3G46PDRTMWS6DEG3JTMDB
  • hookWorkflow is not resumable via public webhook endpoint | wrun_01KQT3GF0TYAY99R4R8SAZSFC9
  • webhookWorkflow | wrun_01KQT3GQVESB1RERT68G05X0S0
  • sleepingWorkflow | wrun_01KQT3GZ48VM8PWXBJK9D4XJJ4
  • parallelSleepWorkflow | wrun_01KQT3HBQ529R1GR7G485QDCGA
  • nullByteWorkflow | wrun_01KQT3HFZ73PGND2GCC3M8M8JJ
  • workflowAndStepMetadataWorkflow | wrun_01KQT3HJ4DEZ9GWHKB4EGTHRH3
  • outputStreamWorkflow no startIndex (reads all chunks)
  • outputStreamWorkflow positive startIndex (skips first chunk)
  • outputStreamWorkflow negative startIndex (reads from end)
  • outputStreamWorkflow - getTailIndex and getStreamChunks getTailIndex returns correct index after stream completes
  • outputStreamWorkflow - getTailIndex and getStreamChunks getTailIndex returns -1 before any chunks are written
  • outputStreamWorkflow - getTailIndex and getStreamChunks getStreamChunks returns same content as reading the stream
  • outputStreamInsideStepWorkflow - getWritable() called inside step functions | wrun_01KQT3KY6TBX4RA7EKRM50CN3V
  • fetchWorkflow | wrun_01KQT3MBM4E4AREH2VEK828ZWX
  • promiseRaceStressTestWorkflow | wrun_01KQT3MEQRJ20E9W676GDHT1EF
  • error handling error propagation workflow errors nested function calls preserve message and stack trace
  • error handling error propagation workflow errors cross-file imports preserve message and stack trace
  • error handling error propagation step errors basic step error preserves message and stack trace
  • error handling error propagation step errors cross-file step error preserves message and function names in stack
  • error handling retry behavior regular Error retries until success
  • error handling retry behavior FatalError fails immediately without retries
  • error handling retry behavior RetryableError respects custom retryAfter delay
  • error handling retry behavior maxRetries=0 disables retries
  • error handling catchability FatalError can be caught and detected with FatalError.is()
  • error handling not registered WorkflowNotRegisteredError fails the run when workflow does not exist
  • error handling not registered StepNotRegisteredError fails the step but workflow can catch it
  • error handling not registered StepNotRegisteredError fails the run when not caught in workflow
  • hookCleanupTestWorkflow - hook token reuse after workflow completion | wrun_01KQT3QT3GBM426YTQR012P8FP
  • concurrent hook token conflict - two workflows cannot use the same hook token simultaneously | wrun_01KQT3RDQ86BRAJ3F06ZCCEEYK
  • hookDisposeTestWorkflow - hook token reuse after explicit disposal while workflow still running | wrun_01KQT3S23PY8CM8584GRTZJGCR
  • stepFunctionPassingWorkflow - step function references can be passed as arguments (without closure vars) | wrun_01KQT3SN09P9BEP3470YYQZG22
  • stepFunctionWithClosureWorkflow - step function with closure variables passed as argument | wrun_01KQT3SXGQZFEG4SG7JT60BBDR
  • closureVariableWorkflow - nested step functions with closure variables | wrun_01KQT3T2GF5BJWTADVNH3RJN5F
  • spawnWorkflowFromStepWorkflow - spawning a child workflow using start() inside a step | wrun_01KQT3T4M25ZRNS3V4JNJ79C58
  • health check (queue-based) - workflow and step endpoints respond to health check messages
  • pathsAliasWorkflow - TypeScript path aliases resolve correctly | wrun_01KQT3TKEC09ZJVHCJ4R3WFB2Q
  • Calculator.calculate - static workflow method using static step methods from another class | wrun_01KQT3TRGQNKQNQ5021Q40K85P
  • AllInOneService.processNumber - static workflow method using sibling static step methods | wrun_01KQT3TYNT6X1F8BH58CN0FME7
  • ChainableService.processWithThis - static step methods using this to reference the class | wrun_01KQT3V4YTM7F1T1T3F7CFMY12
  • thisSerializationWorkflow - step function invoked with .call() and .apply() | wrun_01KQT3VB42HXBX7YB1VQ256ER7
  • customSerializationWorkflow - custom class serialization with WORKFLOW_SERIALIZE/WORKFLOW_DESERIALIZE | wrun_01KQT3VHRKFGBFY0X8TYQC9RXB
  • instanceMethodStepWorkflow - instance methods with "use step" directive | wrun_01KQT3VS2V39G0R2W5K8ZBHRM7
  • crossContextSerdeWorkflow - classes defined in step code are deserializable in workflow context | wrun_01KQT3W3MNYXQRVMHC5A95END0
  • stepFunctionAsStartArgWorkflow - step function reference passed as start() argument | wrun_01KQT3WCK45WS5A71RX9NH7KRG
  • cancelRun - cancelling a running workflow | wrun_01KQT3WKWB5DHTECCJQMNGQV0G
  • cancelRun via CLI - cancelling a running workflow | wrun_01KQT3WWMGF0CN6T8VJEZ6C0NA
  • pages router addTenWorkflow via pages router
  • pages router promiseAllWorkflow via pages router
  • pages router sleepingWorkflow via pages router
  • hookWithSleepWorkflow - hook payloads delivered correctly with concurrent sleep | wrun_01KQT3X80RE08SHRQNN3Y86QY0
  • sleepInLoopWorkflow - sleep inside loop with steps actually delays each iteration | wrun_01KQT3XVB6J6ZFX9NFVXDP6A4F
  • sleepWithSequentialStepsWorkflow - sequential steps work with concurrent sleep (control) | wrun_01KQT3Y6JYGFDQRJSK98TN73QN
  • importMetaUrlWorkflow - import.meta.url is available in step bundles | wrun_01KQT3YCQE5MRPVG85KMESEHN4
  • metadataFromHelperWorkflow - getWorkflowMetadata/getStepMetadata work from module-level helper (#1577) | wrun_01KQT3YESA6HHWR8J7N0F2KFG8
  • resilient start: addTenWorkflow completes when run_created returns 500 | wrun_01KQT3YGR7DQ4CWPZ7PXG8VGEK

Details by Category

✅ ▲ Vercel Production
AppPassedFailedSkipped
✅ astro8107
✅ example8107
✅ express8107
✅ fastify8107
✅ hono8107
✅ nextjs-turbopack8602
✅ nextjs-webpack8602
✅ nitro8107
✅ nuxt8107
✅ sveltekit8107
✅ vite8107
❌ 💻 Local Development
AppPassedFailedSkipped
✅ astro-stable8206
❌ express-stable0826
❌ fastify-stable0826
❌ hono-stable0826
✅ nextjs-turbopack-canary69019
✅ nextjs-turbopack-stable8800
✅ nextjs-webpack-canary69019
✅ nextjs-webpack-stable8800
✅ nitro-stable8206
✅ nuxt-stable8206
✅ sveltekit-stable8206
✅ vite-stable8206
✅ 📦 Local Production
AppPassedFailedSkipped
✅ astro-stable8206
✅ express-stable8206
✅ fastify-stable8206
✅ hono-stable8206
✅ nextjs-turbopack-canary69019
✅ nextjs-turbopack-stable8800
✅ nextjs-webpack-canary69019
✅ nextjs-webpack-stable8800
✅ nitro-stable8206
✅ nuxt-stable8206
✅ sveltekit-stable8206
✅ vite-stable8206
✅ 🐘 Local Postgres
AppPassedFailedSkipped
✅ astro-stable8206
✅ express-stable8206
✅ fastify-stable8206
✅ hono-stable8206
✅ nextjs-turbopack-canary69019
✅ nextjs-turbopack-stable8800
✅ nextjs-webpack-canary69019
✅ nextjs-webpack-stable8800
✅ nitro-stable8206
✅ nuxt-stable8206
✅ sveltekit-stable8206
✅ vite-stable8206
✅ 🪟 Windows
AppPassedFailedSkipped
✅ nextjs-turbopack8800
❌ 🌍 Community Worlds
AppPassedFailedSkipped
✅ mongodb-dev500
❌ mongodb58110
✅ redis-dev500
❌ redis6270
✅ turso-dev500
❌ turso4650
✅ 📋 Other
AppPassedFailedSkipped
✅ e2e-local-dev-nest-stable8206
✅ e2e-local-postgres-nest-stable8206
✅ e2e-local-prod-nest-stable8206

📋 View full workflow run


Some E2E test jobs failed:

  • Vercel Prod: success
  • Local Dev: failure
  • Local Prod: success
  • Local Postgres: success
  • Windows: success

Check the workflow run for details.

@vercel

vercelBot commented May 4, 2026

Copy link
Copy Markdown
Contributor

CopilotAI left a comment

Copy link
Copy Markdown
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Pull request overview

Backports the main-branch fix for failing stable E2E “vite local dev” tests by aligning the step source-map expectation logic with Vite’s current dev-mode behavior, alongside bumping Vite to the intended version across workbenches.

Changes:

  • Bump vite to ^7.3.2 in the Vite and SvelteKit workbenches and update pnpm-lock.yaml accordingly.
  • Update hasStepSourceMaps() to no longer treat vite as a special case (so vite local-dev participates in step source-map assertions when DEV_TEST_CONFIG is set).
  • Add an empty changeset entry (test-only/backport bookkeeping).

Reviewed changes

Copilot reviewed 4 out of 5 changed files in this pull request and generated no comments.

Show a summary per file
FileDescription
workbench/vite/package.jsonBumps Vite devDependency to ^7.3.2 (and minor devDependency reordering).
workbench/sveltekit/package.jsonBumps Vite devDependency to ^7.3.2 for SvelteKit workbench consistency.
pnpm-lock.yamlLockfile regeneration to reflect the Vite bump and dependency graph updates.
packages/core/e2e/utils.tsRemoves vite-specific “no step sourcemaps” carve-out so local-dev expectations match actual stacks.
.changeset/fix-vite-step-source-maps-e2e.mdAdds an empty changeset file for this backport/test-only change.

💡 Add Copilot custom instructions for smarter, more guided reviews. Learn how to get started.

@TooTallNate
TooTallNate merged commit 077eb2a into stableMay 4, 2026
88 of 92 checks passed
@TooTallNate
TooTallNate deleted the nate/backport-vite-step-source-maps-stable branch May 4, 2026 18:30
Sign up for freeto join this conversation on GitHub. Already have an account? Sign in to comment

Labels

None yet

Projects

None yet

Development

Successfully merging this pull request may close these issues.

3 participants

@TooTallNate@karthikscale3
, 'i'); if (__m === '*' || __re.test(location.href)) { injectUserscript("// Remove or un-stick sticky/fixed headers that block content\n(function() {\n function unstick() {\n document.querySelectorAll('header, nav, [role=\"banner\"], .header, .navbar, .sticky, .fixed-top, [style*=\"position: fixed\"], [style*=\"position:sticky\"]').forEach(function(el) {\n if (el.style.position === 'fixed' || el.style.position === 'sticky' || \n getComputedStyle(el).position === 'fixed' || getComputedStyle(el).position === 'sticky') {\n el.style.position = 'static';\n el.style.top = 'auto';\n el.style.zIndex = 'auto';\n }\n });\n }\n \n unstick();\n \n var observer = new MutationObserver(unstick);\n observer.observe(document.body, { childList: true, subtree: true, attributes: true, attributeFilter: ['style', 'class'] });\n})();", "Kill Sticky Headers"); } } catch(__e) { console.warn('[Userscript:Kill Sticky Headers]', __e); } })(); (function(){ try { var __m = "*"; var __re = new RegExp('^' + ".*" + '
Skip to content

[backport] Bump vite + enable step source-map assertions for vite local dev - #1919

Merged
TooTallNate merged 2 commits into
stablefrom
nate/backport-vite-step-source-maps-stable
May 4, 2026
Merged

[backport] Bump vite + enable step source-map assertions for vite local dev#1919
TooTallNate merged 2 commits into
stablefrom
nate/backport-vite-step-source-maps-stable

Conversation

@TooTallNate

Copy link
Copy Markdown
Member

The E2E Local Dev Tests (vite - stable) job has been consistently failing on stable with two assertion failures:

FAIL packages/core/e2e/e2e.test.ts > error handling > error propagation > step errors
> basic step error preserves message and stack trace
AssertionError: expected '...' not to contain '99_e2e.ts'
FAIL packages/core/e2e/e2e.test.ts > error handling > error propagation > step errors
> cross-file step error preserves message and function names in stack
AssertionError: expected '...' not to contain 'helpers.ts'

Example: https://github.com/vercel/workflow/actions/runs/25334881746/job/74277642761

The tests assert that vite local-dev stack traces should NOT contain user source paths (because hasStepSourceMaps() returns false for vite). But the SDK's actual output DOES contain those paths — vite ^7.3.x preserves step bundle source maps in dev mode.

Already fixed on main in #1827 + #1862. This PR cherry-picks both to stable.

Cherry-picked commits

  1. [workflow] Bump Vite #1827Bump vite

    • workbench/vite/package.json: ^7.1.12^7.3.2
    • workbench/sveltekit/package.json: ^7.1.7^7.3.2
    • pnpm-lock.yaml: regenerated to resolve a conflict with stable's diverged lockfile (re-ran pnpm install --no-frozen-lockfile after applying the package.json changes).
  2. test: enable step source-map assertions for vite local dev #1862test: enable step source-map assertions for vite local dev

    • packages/core/e2e/utils.ts: drop the vite-specific carve-out in hasStepSourceMaps(). Vite local-dev now falls through to the default behavior (returns true when DEV_TEST_CONFIG is set).
    • Empty changeset (test-only change).

Verification

  • pnpm install --frozen-lockfile ✅ passes after the cherry-pick.
  • The hasStepSourceMaps() fall-through for vite local-dev now matches what the SDK actually produces: source maps ARE preserved, so the test correctly asserts expect(stack).toContain('99_e2e.ts').

karthikscale3and others added 2 commits May 4, 2026 11:16
* test: enable step source-map assertions for vite local dev
Vite ^7.3.2 (bumped in #1827) preserves step bundle source maps in
dev mode, so stack traces now contain original file paths. Update
hasStepSourceMaps() so vite returns true in local dev and stays false
only in local prod, fixing the consistently failing 'basic step error'
and 'cross-file step error' e2e tests.
* chore: drop body from empty changeset
* address review: drop redundant vite local-prod guard
The default `!DEV_TEST_CONFIG` fall-through already returns false for
vite local prod, so the vite-specific guard is dead code. Just remove
the vite block entirely now that vite local dev matches the default
'has source maps' behavior.
CopilotAI review requested due to automatic review settings May 4, 2026 18:17
@changeset-bot

Copy link
Copy Markdown

🦋 Changeset detected

Latest commit: 6a0e4e4

The changes in this PR will be included in the next version bump.

This PR includes changesets to release 0 packages

When changesets are added to this PR, you'll see the packages that this PR includes changesets for and the associated semver types

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

@github-actions

github-actionsBot commented May 4, 2026

Copy link
Copy Markdown
Contributor

🧪 E2E Test Results

Some tests failed

Summary

PassedFailedSkippedTotal
✅ ▲ Vercel Production901067968
❌ 💻 Local Development724246861056
✅ 📦 Local Production9700861056
✅ 🐘 Local Postgres9700861056
✅ 🪟 Windows880088
❌ 🌍 Community Worlds139830222
✅ 📋 Other246018264
Total40383293434710

❌ Failed Tests

💻 Local Development (246 failed)

express-stable (82 failed):

  • DurableAgent e2e core basic text response
  • DurableAgent e2e core single tool call
  • DurableAgent e2e core multiple sequential tool calls
  • DurableAgent e2e core tool error recovery
  • DurableAgent e2e provider tools provider tool identity preserved across step boundaries
  • DurableAgent e2e provider tools mixed provider and function tools
  • DurableAgent e2e onStepFinish fires constructor + stream callbacks in order with step data
  • DurableAgent e2e onFinish fires constructor + stream callbacks in order with event data
  • DurableAgent e2e instructions string instructions are passed to the model
  • DurableAgent e2e timeout completes within timeout
  • DurableAgent e2e experimental_onStart (GAP) completes but callbacks are not called (GAP)
  • DurableAgent e2e experimental_onStepStart (GAP) completes but callbacks are not called (GAP)
  • DurableAgent e2e experimental_onToolCallStart (GAP) completes but callbacks are not called (GAP)
  • DurableAgent e2e experimental_onToolCallFinish (GAP) completes but callbacks are not called (GAP)
  • DurableAgent e2e prepareCall (GAP) completes but prepareCall is not applied (GAP)
  • DurableAgent e2e prepareStep on constructor agent-level prepareStep is called for each LLM step
  • DurableAgent e2e prepareStep on constructor stream-level prepareStep overrides constructor-level
  • DurableAgent e2e multimodal tool results passes through LanguageModelV3ToolResultOutput from tools
  • DurableAgent e2e tool approval (GAP) completes but needsApproval is not checked (GAP)
  • addTenWorkflow | wrun_01KQT3FBFBVG12VAXSNYCD38D5
  • addTenWorkflow | wrun_01KQT3FBFBVG12VAXSNYCD38D5
  • promiseAllWorkflow | wrun_01KQT3FHW2WGJBGAMNDZSXMJGE
  • promiseRaceWorkflow | wrun_01KQT3FP8BASQ5466XKXCXSTAM
  • promiseAnyWorkflow | wrun_01KQT3FR7249NC090DYN5XGT3F
  • readableStreamWorkflow | wrun_01KQT3FTE4CC3V49YCXA40KTZK
  • hookWorkflow | wrun_01KQT3G46PDRTMWS6DEG3JTMDB
  • hookWorkflow is not resumable via public webhook endpoint | wrun_01KQT3GF0TYAY99R4R8SAZSFC9
  • webhookWorkflow | wrun_01KQT3GQVESB1RERT68G05X0S0
  • webhook route with invalid token
  • sleepingWorkflow | wrun_01KQT3GZ48VM8PWXBJK9D4XJJ4
  • parallelSleepWorkflow | wrun_01KQT3HBQ529R1GR7G485QDCGA
  • nullByteWorkflow | wrun_01KQT3HFZ73PGND2GCC3M8M8JJ
  • workflowAndStepMetadataWorkflow | wrun_01KQT3HJ4DEZ9GWHKB4EGTHRH3
  • outputStreamWorkflow no startIndex (reads all chunks)
  • outputStreamWorkflow positive startIndex (skips first chunk)
  • outputStreamWorkflow negative startIndex (reads from end)
  • outputStreamWorkflow - getTailIndex and getStreamChunks getTailIndex returns correct index after stream completes
  • outputStreamWorkflow - getTailIndex and getStreamChunks getTailIndex returns -1 before any chunks are written
  • outputStreamWorkflow - getTailIndex and getStreamChunks getStreamChunks returns same content as reading the stream
  • outputStreamInsideStepWorkflow - getWritable() called inside step functions | wrun_01KQT3KY6TBX4RA7EKRM50CN3V
  • fetchWorkflow | wrun_01KQT3MBM4E4AREH2VEK828ZWX
  • promiseRaceStressTestWorkflow | wrun_01KQT3MEQRJ20E9W676GDHT1EF
  • error handling error propagation workflow errors nested function calls preserve message and stack trace
  • error handling error propagation workflow errors cross-file imports preserve message and stack trace
  • error handling error propagation step errors basic step error preserves message and stack trace
  • error handling error propagation step errors cross-file step error preserves message and function names in stack
  • error handling retry behavior regular Error retries until success
  • error handling retry behavior FatalError fails immediately without retries
  • error handling retry behavior RetryableError respects custom retryAfter delay
  • error handling retry behavior maxRetries=0 disables retries
  • error handling catchability FatalError can be caught and detected with FatalError.is()
  • error handling not registered WorkflowNotRegisteredError fails the run when workflow does not exist
  • error handling not registered StepNotRegisteredError fails the step but workflow can catch it
  • error handling not registered StepNotRegisteredError fails the run when not caught in workflow
  • stepDirectCallWorkflow - calling step functions directly outside workflow context
  • hookCleanupTestWorkflow - hook token reuse after workflow completion | wrun_01KQT3QT3GBM426YTQR012P8FP
  • concurrent hook token conflict - two workflows cannot use the same hook token simultaneously | wrun_01KQT3RDQ86BRAJ3F06ZCCEEYK
  • hookDisposeTestWorkflow - hook token reuse after explicit disposal while workflow still running | wrun_01KQT3S23PY8CM8584GRTZJGCR
  • stepFunctionPassingWorkflow - step function references can be passed as arguments (without closure vars) | wrun_01KQT3SN09P9BEP3470YYQZG22
  • stepFunctionWithClosureWorkflow - step function with closure variables passed as argument | wrun_01KQT3SXGQZFEG4SG7JT60BBDR
  • closureVariableWorkflow - nested step functions with closure variables | wrun_01KQT3T2GF5BJWTADVNH3RJN5F
  • spawnWorkflowFromStepWorkflow - spawning a child workflow using start() inside a step | wrun_01KQT3T4M25ZRNS3V4JNJ79C58
  • health check endpoint (HTTP) - workflow and step endpoints respond to __health query parameter
  • health check (queue-based) - workflow and step endpoints respond to health check messages
  • health check (CLI) - workflow health command reports healthy endpoints
  • pathsAliasWorkflow - TypeScript path aliases resolve correctly | wrun_01KQT3TKEC09ZJVHCJ4R3WFB2Q
  • Calculator.calculate - static workflow method using static step methods from another class | wrun_01KQT3TRGQNKQNQ5021Q40K85P
  • AllInOneService.processNumber - static workflow method using sibling static step methods | wrun_01KQT3TYNT6X1F8BH58CN0FME7
  • ChainableService.processWithThis - static step methods using this to reference the class | wrun_01KQT3V4YTM7F1T1T3F7CFMY12
  • thisSerializationWorkflow - step function invoked with .call() and .apply() | wrun_01KQT3VB42HXBX7YB1VQ256ER7
  • customSerializationWorkflow - custom class serialization with WORKFLOW_SERIALIZE/WORKFLOW_DESERIALIZE | wrun_01KQT3VHRKFGBFY0X8TYQC9RXB
  • instanceMethodStepWorkflow - instance methods with "use step" directive | wrun_01KQT3VS2V39G0R2W5K8ZBHRM7
  • crossContextSerdeWorkflow - classes defined in step code are deserializable in workflow context | wrun_01KQT3W3MNYXQRVMHC5A95END0
  • stepFunctionAsStartArgWorkflow - step function reference passed as start() argument | wrun_01KQT3WCK45WS5A71RX9NH7KRG
  • cancelRun - cancelling a running workflow | wrun_01KQT3WKWB5DHTECCJQMNGQV0G
  • cancelRun via CLI - cancelling a running workflow | wrun_01KQT3WWMGF0CN6T8VJEZ6C0NA
  • hookWithSleepWorkflow - hook payloads delivered correctly with concurrent sleep | wrun_01KQT3X80RE08SHRQNN3Y86QY0
  • sleepInLoopWorkflow - sleep inside loop with steps actually delays each iteration | wrun_01KQT3XVB6J6ZFX9NFVXDP6A4F
  • sleepWithSequentialStepsWorkflow - sequential steps work with concurrent sleep (control) | wrun_01KQT3Y6JYGFDQRJSK98TN73QN
  • importMetaUrlWorkflow - import.meta.url is available in step bundles | wrun_01KQT3YCQE5MRPVG85KMESEHN4
  • metadataFromHelperWorkflow - getWorkflowMetadata/getStepMetadata work from module-level helper (#1577) | wrun_01KQT3YESA6HHWR8J7N0F2KFG8
  • resilient start: addTenWorkflow completes when run_created returns 500 | wrun_01KQT3YGR7DQ4CWPZ7PXG8VGEK

fastify-stable (82 failed):

  • DurableAgent e2e core basic text response
  • DurableAgent e2e core single tool call
  • DurableAgent e2e core multiple sequential tool calls
  • DurableAgent e2e core tool error recovery
  • DurableAgent e2e provider tools provider tool identity preserved across step boundaries
  • DurableAgent e2e provider tools mixed provider and function tools
  • DurableAgent e2e onStepFinish fires constructor + stream callbacks in order with step data
  • DurableAgent e2e onFinish fires constructor + stream callbacks in order with event data
  • DurableAgent e2e instructions string instructions are passed to the model
  • DurableAgent e2e timeout completes within timeout
  • DurableAgent e2e experimental_onStart (GAP) completes but callbacks are not called (GAP)
  • DurableAgent e2e experimental_onStepStart (GAP) completes but callbacks are not called (GAP)
  • DurableAgent e2e experimental_onToolCallStart (GAP) completes but callbacks are not called (GAP)
  • DurableAgent e2e experimental_onToolCallFinish (GAP) completes but callbacks are not called (GAP)
  • DurableAgent e2e prepareCall (GAP) completes but prepareCall is not applied (GAP)
  • DurableAgent e2e prepareStep on constructor agent-level prepareStep is called for each LLM step
  • DurableAgent e2e prepareStep on constructor stream-level prepareStep overrides constructor-level
  • DurableAgent e2e multimodal tool results passes through LanguageModelV3ToolResultOutput from tools
  • DurableAgent e2e tool approval (GAP) completes but needsApproval is not checked (GAP)
  • addTenWorkflow | wrun_01KQT3FBFBVG12VAXSNYCD38D5
  • addTenWorkflow | wrun_01KQT3FBFBVG12VAXSNYCD38D5
  • promiseAllWorkflow | wrun_01KQT3FHW2WGJBGAMNDZSXMJGE
  • promiseRaceWorkflow | wrun_01KQT3FP8BASQ5466XKXCXSTAM
  • promiseAnyWorkflow | wrun_01KQT3FR7249NC090DYN5XGT3F
  • readableStreamWorkflow | wrun_01KQT3FTE4CC3V49YCXA40KTZK
  • hookWorkflow | wrun_01KQT3G46PDRTMWS6DEG3JTMDB
  • hookWorkflow is not resumable via public webhook endpoint | wrun_01KQT3GF0TYAY99R4R8SAZSFC9
  • webhookWorkflow | wrun_01KQT3GQVESB1RERT68G05X0S0
  • webhook route with invalid token
  • sleepingWorkflow | wrun_01KQT3GZ48VM8PWXBJK9D4XJJ4
  • parallelSleepWorkflow | wrun_01KQT3HBQ529R1GR7G485QDCGA
  • nullByteWorkflow | wrun_01KQT3HFZ73PGND2GCC3M8M8JJ
  • workflowAndStepMetadataWorkflow | wrun_01KQT3HJ4DEZ9GWHKB4EGTHRH3
  • outputStreamWorkflow no startIndex (reads all chunks)
  • outputStreamWorkflow positive startIndex (skips first chunk)
  • outputStreamWorkflow negative startIndex (reads from end)
  • outputStreamWorkflow - getTailIndex and getStreamChunks getTailIndex returns correct index after stream completes
  • outputStreamWorkflow - getTailIndex and getStreamChunks getTailIndex returns -1 before any chunks are written
  • outputStreamWorkflow - getTailIndex and getStreamChunks getStreamChunks returns same content as reading the stream
  • outputStreamInsideStepWorkflow - getWritable() called inside step functions | wrun_01KQT3KY6TBX4RA7EKRM50CN3V
  • fetchWorkflow | wrun_01KQT3MBM4E4AREH2VEK828ZWX
  • promiseRaceStressTestWorkflow | wrun_01KQT3MEQRJ20E9W676GDHT1EF
  • error handling error propagation workflow errors nested function calls preserve message and stack trace
  • error handling error propagation workflow errors cross-file imports preserve message and stack trace
  • error handling error propagation step errors basic step error preserves message and stack trace
  • error handling error propagation step errors cross-file step error preserves message and function names in stack
  • error handling retry behavior regular Error retries until success
  • error handling retry behavior FatalError fails immediately without retries
  • error handling retry behavior RetryableError respects custom retryAfter delay
  • error handling retry behavior maxRetries=0 disables retries
  • error handling catchability FatalError can be caught and detected with FatalError.is()
  • error handling not registered WorkflowNotRegisteredError fails the run when workflow does not exist
  • error handling not registered StepNotRegisteredError fails the step but workflow can catch it
  • error handling not registered StepNotRegisteredError fails the run when not caught in workflow
  • stepDirectCallWorkflow - calling step functions directly outside workflow context
  • hookCleanupTestWorkflow - hook token reuse after workflow completion | wrun_01KQT3QT3GBM426YTQR012P8FP
  • concurrent hook token conflict - two workflows cannot use the same hook token simultaneously | wrun_01KQT3RDQ86BRAJ3F06ZCCEEYK
  • hookDisposeTestWorkflow - hook token reuse after explicit disposal while workflow still running | wrun_01KQT3S23PY8CM8584GRTZJGCR
  • stepFunctionPassingWorkflow - step function references can be passed as arguments (without closure vars) | wrun_01KQT3SN09P9BEP3470YYQZG22
  • stepFunctionWithClosureWorkflow - step function with closure variables passed as argument | wrun_01KQT3SXGQZFEG4SG7JT60BBDR
  • closureVariableWorkflow - nested step functions with closure variables | wrun_01KQT3T2GF5BJWTADVNH3RJN5F
  • spawnWorkflowFromStepWorkflow - spawning a child workflow using start() inside a step | wrun_01KQT3T4M25ZRNS3V4JNJ79C58
  • health check endpoint (HTTP) - workflow and step endpoints respond to __health query parameter
  • health check (queue-based) - workflow and step endpoints respond to health check messages
  • health check (CLI) - workflow health command reports healthy endpoints
  • pathsAliasWorkflow - TypeScript path aliases resolve correctly | wrun_01KQT3TKEC09ZJVHCJ4R3WFB2Q
  • Calculator.calculate - static workflow method using static step methods from another class | wrun_01KQT3TRGQNKQNQ5021Q40K85P
  • AllInOneService.processNumber - static workflow method using sibling static step methods | wrun_01KQT3TYNT6X1F8BH58CN0FME7
  • ChainableService.processWithThis - static step methods using this to reference the class | wrun_01KQT3V4YTM7F1T1T3F7CFMY12
  • thisSerializationWorkflow - step function invoked with .call() and .apply() | wrun_01KQT3VB42HXBX7YB1VQ256ER7
  • customSerializationWorkflow - custom class serialization with WORKFLOW_SERIALIZE/WORKFLOW_DESERIALIZE | wrun_01KQT3VHRKFGBFY0X8TYQC9RXB
  • instanceMethodStepWorkflow - instance methods with "use step" directive | wrun_01KQT3VS2V39G0R2W5K8ZBHRM7
  • crossContextSerdeWorkflow - classes defined in step code are deserializable in workflow context | wrun_01KQT3W3MNYXQRVMHC5A95END0
  • stepFunctionAsStartArgWorkflow - step function reference passed as start() argument | wrun_01KQT3WCK45WS5A71RX9NH7KRG
  • cancelRun - cancelling a running workflow | wrun_01KQT3WKWB5DHTECCJQMNGQV0G
  • cancelRun via CLI - cancelling a running workflow | wrun_01KQT3WWMGF0CN6T8VJEZ6C0NA
  • hookWithSleepWorkflow - hook payloads delivered correctly with concurrent sleep | wrun_01KQT3X80RE08SHRQNN3Y86QY0
  • sleepInLoopWorkflow - sleep inside loop with steps actually delays each iteration | wrun_01KQT3XVB6J6ZFX9NFVXDP6A4F
  • sleepWithSequentialStepsWorkflow - sequential steps work with concurrent sleep (control) | wrun_01KQT3Y6JYGFDQRJSK98TN73QN
  • importMetaUrlWorkflow - import.meta.url is available in step bundles | wrun_01KQT3YCQE5MRPVG85KMESEHN4
  • metadataFromHelperWorkflow - getWorkflowMetadata/getStepMetadata work from module-level helper (#1577) | wrun_01KQT3YESA6HHWR8J7N0F2KFG8
  • resilient start: addTenWorkflow completes when run_created returns 500 | wrun_01KQT3YGR7DQ4CWPZ7PXG8VGEK

hono-stable (82 failed):

  • DurableAgent e2e core basic text response
  • DurableAgent e2e core single tool call
  • DurableAgent e2e core multiple sequential tool calls
  • DurableAgent e2e core tool error recovery
  • DurableAgent e2e provider tools provider tool identity preserved across step boundaries
  • DurableAgent e2e provider tools mixed provider and function tools
  • DurableAgent e2e onStepFinish fires constructor + stream callbacks in order with step data
  • DurableAgent e2e onFinish fires constructor + stream callbacks in order with event data
  • DurableAgent e2e instructions string instructions are passed to the model
  • DurableAgent e2e timeout completes within timeout
  • DurableAgent e2e experimental_onStart (GAP) completes but callbacks are not called (GAP)
  • DurableAgent e2e experimental_onStepStart (GAP) completes but callbacks are not called (GAP)
  • DurableAgent e2e experimental_onToolCallStart (GAP) completes but callbacks are not called (GAP)
  • DurableAgent e2e experimental_onToolCallFinish (GAP) completes but callbacks are not called (GAP)
  • DurableAgent e2e prepareCall (GAP) completes but prepareCall is not applied (GAP)
  • DurableAgent e2e prepareStep on constructor agent-level prepareStep is called for each LLM step
  • DurableAgent e2e prepareStep on constructor stream-level prepareStep overrides constructor-level
  • DurableAgent e2e multimodal tool results passes through LanguageModelV3ToolResultOutput from tools
  • DurableAgent e2e tool approval (GAP) completes but needsApproval is not checked (GAP)
  • addTenWorkflow | wrun_01KQT3FBFBVG12VAXSNYCD38D5
  • addTenWorkflow | wrun_01KQT3FBFBVG12VAXSNYCD38D5
  • promiseAllWorkflow | wrun_01KQT3FHW2WGJBGAMNDZSXMJGE
  • promiseRaceWorkflow | wrun_01KQT3FP8BASQ5466XKXCXSTAM
  • promiseAnyWorkflow | wrun_01KQT3FR7249NC090DYN5XGT3F
  • readableStreamWorkflow | wrun_01KQT3FTE4CC3V49YCXA40KTZK
  • hookWorkflow | wrun_01KQT3G46PDRTMWS6DEG3JTMDB
  • hookWorkflow is not resumable via public webhook endpoint | wrun_01KQT3GF0TYAY99R4R8SAZSFC9
  • webhookWorkflow | wrun_01KQT3GQVESB1RERT68G05X0S0
  • webhook route with invalid token
  • sleepingWorkflow | wrun_01KQT3GZ48VM8PWXBJK9D4XJJ4
  • parallelSleepWorkflow | wrun_01KQT3HBQ529R1GR7G485QDCGA
  • nullByteWorkflow | wrun_01KQT3HFZ73PGND2GCC3M8M8JJ
  • workflowAndStepMetadataWorkflow | wrun_01KQT3HJ4DEZ9GWHKB4EGTHRH3
  • outputStreamWorkflow no startIndex (reads all chunks)
  • outputStreamWorkflow positive startIndex (skips first chunk)
  • outputStreamWorkflow negative startIndex (reads from end)
  • outputStreamWorkflow - getTailIndex and getStreamChunks getTailIndex returns correct index after stream completes
  • outputStreamWorkflow - getTailIndex and getStreamChunks getTailIndex returns -1 before any chunks are written
  • outputStreamWorkflow - getTailIndex and getStreamChunks getStreamChunks returns same content as reading the stream
  • outputStreamInsideStepWorkflow - getWritable() called inside step functions | wrun_01KQT3KY6TBX4RA7EKRM50CN3V
  • fetchWorkflow | wrun_01KQT3MBM4E4AREH2VEK828ZWX
  • promiseRaceStressTestWorkflow | wrun_01KQT3MEQRJ20E9W676GDHT1EF
  • error handling error propagation workflow errors nested function calls preserve message and stack trace
  • error handling error propagation workflow errors cross-file imports preserve message and stack trace
  • error handling error propagation step errors basic step error preserves message and stack trace
  • error handling error propagation step errors cross-file step error preserves message and function names in stack
  • error handling retry behavior regular Error retries until success
  • error handling retry behavior FatalError fails immediately without retries
  • error handling retry behavior RetryableError respects custom retryAfter delay
  • error handling retry behavior maxRetries=0 disables retries
  • error handling catchability FatalError can be caught and detected with FatalError.is()
  • error handling not registered WorkflowNotRegisteredError fails the run when workflow does not exist
  • error handling not registered StepNotRegisteredError fails the step but workflow can catch it
  • error handling not registered StepNotRegisteredError fails the run when not caught in workflow
  • stepDirectCallWorkflow - calling step functions directly outside workflow context
  • hookCleanupTestWorkflow - hook token reuse after workflow completion | wrun_01KQT3QT3GBM426YTQR012P8FP
  • concurrent hook token conflict - two workflows cannot use the same hook token simultaneously | wrun_01KQT3RDQ86BRAJ3F06ZCCEEYK
  • hookDisposeTestWorkflow - hook token reuse after explicit disposal while workflow still running | wrun_01KQT3S23PY8CM8584GRTZJGCR
  • stepFunctionPassingWorkflow - step function references can be passed as arguments (without closure vars) | wrun_01KQT3SN09P9BEP3470YYQZG22
  • stepFunctionWithClosureWorkflow - step function with closure variables passed as argument | wrun_01KQT3SXGQZFEG4SG7JT60BBDR
  • closureVariableWorkflow - nested step functions with closure variables | wrun_01KQT3T2GF5BJWTADVNH3RJN5F
  • spawnWorkflowFromStepWorkflow - spawning a child workflow using start() inside a step | wrun_01KQT3T4M25ZRNS3V4JNJ79C58
  • health check endpoint (HTTP) - workflow and step endpoints respond to __health query parameter
  • health check (queue-based) - workflow and step endpoints respond to health check messages
  • health check (CLI) - workflow health command reports healthy endpoints
  • pathsAliasWorkflow - TypeScript path aliases resolve correctly | wrun_01KQT3TKEC09ZJVHCJ4R3WFB2Q
  • Calculator.calculate - static workflow method using static step methods from another class | wrun_01KQT3TRGQNKQNQ5021Q40K85P
  • AllInOneService.processNumber - static workflow method using sibling static step methods | wrun_01KQT3TYNT6X1F8BH58CN0FME7
  • ChainableService.processWithThis - static step methods using this to reference the class | wrun_01KQT3V4YTM7F1T1T3F7CFMY12
  • thisSerializationWorkflow - step function invoked with .call() and .apply() | wrun_01KQT3VB42HXBX7YB1VQ256ER7
  • customSerializationWorkflow - custom class serialization with WORKFLOW_SERIALIZE/WORKFLOW_DESERIALIZE | wrun_01KQT3VHRKFGBFY0X8TYQC9RXB
  • instanceMethodStepWorkflow - instance methods with "use step" directive | wrun_01KQT3VS2V39G0R2W5K8ZBHRM7
  • crossContextSerdeWorkflow - classes defined in step code are deserializable in workflow context | wrun_01KQT3W3MNYXQRVMHC5A95END0
  • stepFunctionAsStartArgWorkflow - step function reference passed as start() argument | wrun_01KQT3WCK45WS5A71RX9NH7KRG
  • cancelRun - cancelling a running workflow | wrun_01KQT3WKWB5DHTECCJQMNGQV0G
  • cancelRun via CLI - cancelling a running workflow | wrun_01KQT3WWMGF0CN6T8VJEZ6C0NA
  • hookWithSleepWorkflow - hook payloads delivered correctly with concurrent sleep | wrun_01KQT3X80RE08SHRQNN3Y86QY0
  • sleepInLoopWorkflow - sleep inside loop with steps actually delays each iteration | wrun_01KQT3XVB6J6ZFX9NFVXDP6A4F
  • sleepWithSequentialStepsWorkflow - sequential steps work with concurrent sleep (control) | wrun_01KQT3Y6JYGFDQRJSK98TN73QN
  • importMetaUrlWorkflow - import.meta.url is available in step bundles | wrun_01KQT3YCQE5MRPVG85KMESEHN4
  • metadataFromHelperWorkflow - getWorkflowMetadata/getStepMetadata work from module-level helper (#1577) | wrun_01KQT3YESA6HHWR8J7N0F2KFG8
  • resilient start: addTenWorkflow completes when run_created returns 500 | wrun_01KQT3YGR7DQ4CWPZ7PXG8VGEK
🌍 Community Worlds (83 failed)

mongodb (11 failed):

  • readableStreamWorkflow | wrun_01KQT3FTE4CC3V49YCXA40KTZK
  • hookWorkflow is not resumable via public webhook endpoint | wrun_01KQT3GF0TYAY99R4R8SAZSFC9
  • webhookWorkflow | wrun_01KQT3GQVESB1RERT68G05X0S0
  • outputStreamWorkflow no startIndex (reads all chunks)
  • outputStreamWorkflow negative startIndex (reads from end)
  • outputStreamWorkflow - getTailIndex and getStreamChunks getTailIndex returns correct index after stream completes
  • outputStreamWorkflow - getTailIndex and getStreamChunks getTailIndex returns -1 before any chunks are written
  • outputStreamWorkflow - getTailIndex and getStreamChunks getStreamChunks returns same content as reading the stream
  • outputStreamInsideStepWorkflow - getWritable() called inside step functions | wrun_01KQT3KY6TBX4RA7EKRM50CN3V
  • concurrent hook token conflict - two workflows cannot use the same hook token simultaneously | wrun_01KQT3RDQ86BRAJ3F06ZCCEEYK
  • resilient start: addTenWorkflow completes when run_created returns 500 | wrun_01KQT3YGR7DQ4CWPZ7PXG8VGEK

redis (7 failed):

  • hookWorkflow is not resumable via public webhook endpoint | wrun_01KQT3GF0TYAY99R4R8SAZSFC9
  • outputStreamWorkflow negative startIndex (reads from end)
  • outputStreamWorkflow - getTailIndex and getStreamChunks getTailIndex returns correct index after stream completes
  • outputStreamWorkflow - getTailIndex and getStreamChunks getTailIndex returns -1 before any chunks are written
  • outputStreamWorkflow - getTailIndex and getStreamChunks getStreamChunks returns same content as reading the stream
  • concurrent hook token conflict - two workflows cannot use the same hook token simultaneously | wrun_01KQT3RDQ86BRAJ3F06ZCCEEYK
  • resilient start: addTenWorkflow completes when run_created returns 500 | wrun_01KQT3YGR7DQ4CWPZ7PXG8VGEK

turso (65 failed):

  • addTenWorkflow | wrun_01KQT3FBFBVG12VAXSNYCD38D5
  • addTenWorkflow | wrun_01KQT3FBFBVG12VAXSNYCD38D5
  • wellKnownAgentWorkflow (.well-known/agent) | wrun_01KQT3H4R6SJD6A42YJS2ABWQ5
  • should work with react rendering in step
  • promiseAllWorkflow | wrun_01KQT3FHW2WGJBGAMNDZSXMJGE
  • promiseRaceWorkflow | wrun_01KQT3FP8BASQ5466XKXCXSTAM
  • promiseAnyWorkflow | wrun_01KQT3FR7249NC090DYN5XGT3F
  • importedStepOnlyWorkflow | wrun_01KQT3HEM83G8SG7C6R17MACB6
  • readableStreamWorkflow | wrun_01KQT3FTE4CC3V49YCXA40KTZK
  • hookWorkflow | wrun_01KQT3G46PDRTMWS6DEG3JTMDB
  • hookWorkflow is not resumable via public webhook endpoint | wrun_01KQT3GF0TYAY99R4R8SAZSFC9
  • webhookWorkflow | wrun_01KQT3GQVESB1RERT68G05X0S0
  • sleepingWorkflow | wrun_01KQT3GZ48VM8PWXBJK9D4XJJ4
  • parallelSleepWorkflow | wrun_01KQT3HBQ529R1GR7G485QDCGA
  • nullByteWorkflow | wrun_01KQT3HFZ73PGND2GCC3M8M8JJ
  • workflowAndStepMetadataWorkflow | wrun_01KQT3HJ4DEZ9GWHKB4EGTHRH3
  • outputStreamWorkflow no startIndex (reads all chunks)
  • outputStreamWorkflow positive startIndex (skips first chunk)
  • outputStreamWorkflow negative startIndex (reads from end)
  • outputStreamWorkflow - getTailIndex and getStreamChunks getTailIndex returns correct index after stream completes
  • outputStreamWorkflow - getTailIndex and getStreamChunks getTailIndex returns -1 before any chunks are written
  • outputStreamWorkflow - getTailIndex and getStreamChunks getStreamChunks returns same content as reading the stream
  • outputStreamInsideStepWorkflow - getWritable() called inside step functions | wrun_01KQT3KY6TBX4RA7EKRM50CN3V
  • fetchWorkflow | wrun_01KQT3MBM4E4AREH2VEK828ZWX
  • promiseRaceStressTestWorkflow | wrun_01KQT3MEQRJ20E9W676GDHT1EF
  • error handling error propagation workflow errors nested function calls preserve message and stack trace
  • error handling error propagation workflow errors cross-file imports preserve message and stack trace
  • error handling error propagation step errors basic step error preserves message and stack trace
  • error handling error propagation step errors cross-file step error preserves message and function names in stack
  • error handling retry behavior regular Error retries until success
  • error handling retry behavior FatalError fails immediately without retries
  • error handling retry behavior RetryableError respects custom retryAfter delay
  • error handling retry behavior maxRetries=0 disables retries
  • error handling catchability FatalError can be caught and detected with FatalError.is()
  • error handling not registered WorkflowNotRegisteredError fails the run when workflow does not exist
  • error handling not registered StepNotRegisteredError fails the step but workflow can catch it
  • error handling not registered StepNotRegisteredError fails the run when not caught in workflow
  • hookCleanupTestWorkflow - hook token reuse after workflow completion | wrun_01KQT3QT3GBM426YTQR012P8FP
  • concurrent hook token conflict - two workflows cannot use the same hook token simultaneously | wrun_01KQT3RDQ86BRAJ3F06ZCCEEYK
  • hookDisposeTestWorkflow - hook token reuse after explicit disposal while workflow still running | wrun_01KQT3S23PY8CM8584GRTZJGCR
  • stepFunctionPassingWorkflow - step function references can be passed as arguments (without closure vars) | wrun_01KQT3SN09P9BEP3470YYQZG22
  • stepFunctionWithClosureWorkflow - step function with closure variables passed as argument | wrun_01KQT3SXGQZFEG4SG7JT60BBDR
  • closureVariableWorkflow - nested step functions with closure variables | wrun_01KQT3T2GF5BJWTADVNH3RJN5F
  • spawnWorkflowFromStepWorkflow - spawning a child workflow using start() inside a step | wrun_01KQT3T4M25ZRNS3V4JNJ79C58
  • health check (queue-based) - workflow and step endpoints respond to health check messages
  • pathsAliasWorkflow - TypeScript path aliases resolve correctly | wrun_01KQT3TKEC09ZJVHCJ4R3WFB2Q
  • Calculator.calculate - static workflow method using static step methods from another class | wrun_01KQT3TRGQNKQNQ5021Q40K85P
  • AllInOneService.processNumber - static workflow method using sibling static step methods | wrun_01KQT3TYNT6X1F8BH58CN0FME7
  • ChainableService.processWithThis - static step methods using this to reference the class | wrun_01KQT3V4YTM7F1T1T3F7CFMY12
  • thisSerializationWorkflow - step function invoked with .call() and .apply() | wrun_01KQT3VB42HXBX7YB1VQ256ER7
  • customSerializationWorkflow - custom class serialization with WORKFLOW_SERIALIZE/WORKFLOW_DESERIALIZE | wrun_01KQT3VHRKFGBFY0X8TYQC9RXB
  • instanceMethodStepWorkflow - instance methods with "use step" directive | wrun_01KQT3VS2V39G0R2W5K8ZBHRM7
  • crossContextSerdeWorkflow - classes defined in step code are deserializable in workflow context | wrun_01KQT3W3MNYXQRVMHC5A95END0
  • stepFunctionAsStartArgWorkflow - step function reference passed as start() argument | wrun_01KQT3WCK45WS5A71RX9NH7KRG
  • cancelRun - cancelling a running workflow | wrun_01KQT3WKWB5DHTECCJQMNGQV0G
  • cancelRun via CLI - cancelling a running workflow | wrun_01KQT3WWMGF0CN6T8VJEZ6C0NA
  • pages router addTenWorkflow via pages router
  • pages router promiseAllWorkflow via pages router
  • pages router sleepingWorkflow via pages router
  • hookWithSleepWorkflow - hook payloads delivered correctly with concurrent sleep | wrun_01KQT3X80RE08SHRQNN3Y86QY0
  • sleepInLoopWorkflow - sleep inside loop with steps actually delays each iteration | wrun_01KQT3XVB6J6ZFX9NFVXDP6A4F
  • sleepWithSequentialStepsWorkflow - sequential steps work with concurrent sleep (control) | wrun_01KQT3Y6JYGFDQRJSK98TN73QN
  • importMetaUrlWorkflow - import.meta.url is available in step bundles | wrun_01KQT3YCQE5MRPVG85KMESEHN4
  • metadataFromHelperWorkflow - getWorkflowMetadata/getStepMetadata work from module-level helper (#1577) | wrun_01KQT3YESA6HHWR8J7N0F2KFG8
  • resilient start: addTenWorkflow completes when run_created returns 500 | wrun_01KQT3YGR7DQ4CWPZ7PXG8VGEK

Details by Category

✅ ▲ Vercel Production
AppPassedFailedSkipped
✅ astro8107
✅ example8107
✅ express8107
✅ fastify8107
✅ hono8107
✅ nextjs-turbopack8602
✅ nextjs-webpack8602
✅ nitro8107
✅ nuxt8107
✅ sveltekit8107
✅ vite8107
❌ 💻 Local Development
AppPassedFailedSkipped
✅ astro-stable8206
❌ express-stable0826
❌ fastify-stable0826
❌ hono-stable0826
✅ nextjs-turbopack-canary69019
✅ nextjs-turbopack-stable8800
✅ nextjs-webpack-canary69019
✅ nextjs-webpack-stable8800
✅ nitro-stable8206
✅ nuxt-stable8206
✅ sveltekit-stable8206
✅ vite-stable8206
✅ 📦 Local Production
AppPassedFailedSkipped
✅ astro-stable8206
✅ express-stable8206
✅ fastify-stable8206
✅ hono-stable8206
✅ nextjs-turbopack-canary69019
✅ nextjs-turbopack-stable8800
✅ nextjs-webpack-canary69019
✅ nextjs-webpack-stable8800
✅ nitro-stable8206
✅ nuxt-stable8206
✅ sveltekit-stable8206
✅ vite-stable8206
✅ 🐘 Local Postgres
AppPassedFailedSkipped
✅ astro-stable8206
✅ express-stable8206
✅ fastify-stable8206
✅ hono-stable8206
✅ nextjs-turbopack-canary69019
✅ nextjs-turbopack-stable8800
✅ nextjs-webpack-canary69019
✅ nextjs-webpack-stable8800
✅ nitro-stable8206
✅ nuxt-stable8206
✅ sveltekit-stable8206
✅ vite-stable8206
✅ 🪟 Windows
AppPassedFailedSkipped
✅ nextjs-turbopack8800
❌ 🌍 Community Worlds
AppPassedFailedSkipped
✅ mongodb-dev500
❌ mongodb58110
✅ redis-dev500
❌ redis6270
✅ turso-dev500
❌ turso4650
✅ 📋 Other
AppPassedFailedSkipped
✅ e2e-local-dev-nest-stable8206
✅ e2e-local-postgres-nest-stable8206
✅ e2e-local-prod-nest-stable8206

📋 View full workflow run


Some E2E test jobs failed:

  • Vercel Prod: success
  • Local Dev: failure
  • Local Prod: success
  • Local Postgres: success
  • Windows: success

Check the workflow run for details.

@vercel

vercelBot commented May 4, 2026

Copy link
Copy Markdown
Contributor

CopilotAI left a comment

Copy link
Copy Markdown
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Pull request overview

Backports the main-branch fix for failing stable E2E “vite local dev” tests by aligning the step source-map expectation logic with Vite’s current dev-mode behavior, alongside bumping Vite to the intended version across workbenches.

Changes:

  • Bump vite to ^7.3.2 in the Vite and SvelteKit workbenches and update pnpm-lock.yaml accordingly.
  • Update hasStepSourceMaps() to no longer treat vite as a special case (so vite local-dev participates in step source-map assertions when DEV_TEST_CONFIG is set).
  • Add an empty changeset entry (test-only/backport bookkeeping).

Reviewed changes

Copilot reviewed 4 out of 5 changed files in this pull request and generated no comments.

Show a summary per file
FileDescription
workbench/vite/package.jsonBumps Vite devDependency to ^7.3.2 (and minor devDependency reordering).
workbench/sveltekit/package.jsonBumps Vite devDependency to ^7.3.2 for SvelteKit workbench consistency.
pnpm-lock.yamlLockfile regeneration to reflect the Vite bump and dependency graph updates.
packages/core/e2e/utils.tsRemoves vite-specific “no step sourcemaps” carve-out so local-dev expectations match actual stacks.
.changeset/fix-vite-step-source-maps-e2e.mdAdds an empty changeset file for this backport/test-only change.

💡 Add Copilot custom instructions for smarter, more guided reviews. Learn how to get started.

@TooTallNate
TooTallNate merged commit 077eb2a into stableMay 4, 2026
88 of 92 checks passed
@TooTallNate
TooTallNate deleted the nate/backport-vite-step-source-maps-stable branch May 4, 2026 18:30
Sign up for freeto join this conversation on GitHub. Already have an account? Sign in to comment

Labels

None yet

Projects

None yet

Development

Successfully merging this pull request may close these issues.

3 participants

@TooTallNate@karthikscale3
, 'i'); if (__m === '*' || __re.test(location.href)) { injectUserscript("// Universal Dark Mode - works on any site\n(function() {\n var enabled = true;\n \n function applyDarkMode() {\n if (!enabled) return;\n \n // Create style element if it doesn't exist\n var style = document.getElementById('universal-dark-mode-style');\n if (!style) {\n style = document.createElement('style');\n style.id = 'universal-dark-mode-style';\n document.head.appendChild(style);\n }\n \n // Dark mode CSS - inverts colors but preserves images/video\n style.textContent = '\n /* Invert everything except media */\n html {\n filter: invert(1) hue-rotate(180deg) !important;\n background: #1a1a2e !important;\n }\n \n /* Restore images, videos, iframes, canvas */\n img, video, iframe, canvas, svg, picture, [style*=\"background-image\"] {\n filter: invert(1) hue-rotate(180deg) !important;\n }\n \n /* Preserve specific elements that should not be inverted */\n .no-dark-mode, .no-dark-mode *,\n [data-theme=\"light\"], [data-theme=\"light\"],\n .ace_editor, .ace_editor *,\n .CodeMirror, .CodeMirror *,\n .monaco-editor, .monaco-editor *,\n .markdown-body pre, .markdown-body pre *,\n .highlight, .highlight *,\n pre code, pre code * {\n filter: none !important;\n }\n \n /* Fix common UI elements */\n .modal, .popup, .dropdown-menu, .tooltip, .popover {\n filter: invert(1) hue-rotate(180deg) !important;\n background: #2d2d44 !important;\n border-color: #444 !important;\n }\n \n /* Scrollbars */\n ::-webkit-scrollbar { background: #1a1a2e !important; }\n ::-webkit-scrollbar-thumb { background: #444 !important; }\n ::-webkit-scrollbar-thumb:hover { background: #555 !important; }\n \n /* Selection */\n ::selection { background: #4ecdc4 !important; color: #1a1a2e !important; }\n ::-moz-selection { background: #4ecdc4 !important; color: #1a1a2e !important; }\n ';\n }\n \n function removeDarkMode() {\n var style = document.getElementById('universal-dark-mode-style');\n if (style) style.remove();\n }\n \n // Toggle with Alt+Shift+D\n document.addEventListener('keydown', function(e) {\n if (e.altKey && e.shiftKey && e.key === 'D') {\n e.preventDefault();\n enabled = !enabled;\n if (enabled) {\n applyDarkMode();\n console.log('[Universal Dark Mode] Enabled');\n } else {\n removeDarkMode();\n console.log('[Universal Dark Mode] Disabled');\n }\n }\n });\n \n // Apply on load\n applyDarkMode();\n \n // Re-apply on dynamic content\n var observer = new MutationObserver(function(mutations) {\n if (enabled && !document.getElementById('universal-dark-mode-style')) {\n applyDarkMode();\n }\n });\n observer.observe(document.head, { childList: true });\n \n console.log('[Universal Dark Mode] Loaded - Press Alt+Shift+D to toggle');\n})();", "Universal Dark Mode"); } } catch(__e) { console.warn('[Userscript:Universal Dark Mode]', __e); } })(); })();
Skip to content

[backport] Bump vite + enable step source-map assertions for vite local dev - #1919

Merged
TooTallNate merged 2 commits into
stablefrom
nate/backport-vite-step-source-maps-stable
May 4, 2026
Merged

[backport] Bump vite + enable step source-map assertions for vite local dev#1919
TooTallNate merged 2 commits into
stablefrom
nate/backport-vite-step-source-maps-stable

Conversation

@TooTallNate

Copy link
Copy Markdown
Member

The E2E Local Dev Tests (vite - stable) job has been consistently failing on stable with two assertion failures:

FAIL packages/core/e2e/e2e.test.ts > error handling > error propagation > step errors
> basic step error preserves message and stack trace
AssertionError: expected '...' not to contain '99_e2e.ts'
FAIL packages/core/e2e/e2e.test.ts > error handling > error propagation > step errors
> cross-file step error preserves message and function names in stack
AssertionError: expected '...' not to contain 'helpers.ts'

Example: https://github.com/vercel/workflow/actions/runs/25334881746/job/74277642761

The tests assert that vite local-dev stack traces should NOT contain user source paths (because hasStepSourceMaps() returns false for vite). But the SDK's actual output DOES contain those paths — vite ^7.3.x preserves step bundle source maps in dev mode.

Already fixed on main in #1827 + #1862. This PR cherry-picks both to stable.

Cherry-picked commits

  1. [workflow] Bump Vite #1827Bump vite

    • workbench/vite/package.json: ^7.1.12^7.3.2
    • workbench/sveltekit/package.json: ^7.1.7^7.3.2
    • pnpm-lock.yaml: regenerated to resolve a conflict with stable's diverged lockfile (re-ran pnpm install --no-frozen-lockfile after applying the package.json changes).
  2. test: enable step source-map assertions for vite local dev #1862test: enable step source-map assertions for vite local dev

    • packages/core/e2e/utils.ts: drop the vite-specific carve-out in hasStepSourceMaps(). Vite local-dev now falls through to the default behavior (returns true when DEV_TEST_CONFIG is set).
    • Empty changeset (test-only change).

Verification

  • pnpm install --frozen-lockfile ✅ passes after the cherry-pick.
  • The hasStepSourceMaps() fall-through for vite local-dev now matches what the SDK actually produces: source maps ARE preserved, so the test correctly asserts expect(stack).toContain('99_e2e.ts').

karthikscale3and others added 2 commits May 4, 2026 11:16
* test: enable step source-map assertions for vite local dev
Vite ^7.3.2 (bumped in #1827) preserves step bundle source maps in
dev mode, so stack traces now contain original file paths. Update
hasStepSourceMaps() so vite returns true in local dev and stays false
only in local prod, fixing the consistently failing 'basic step error'
and 'cross-file step error' e2e tests.
* chore: drop body from empty changeset
* address review: drop redundant vite local-prod guard
The default `!DEV_TEST_CONFIG` fall-through already returns false for
vite local prod, so the vite-specific guard is dead code. Just remove
the vite block entirely now that vite local dev matches the default
'has source maps' behavior.
CopilotAI review requested due to automatic review settings May 4, 2026 18:17
@changeset-bot

Copy link
Copy Markdown

🦋 Changeset detected

Latest commit: 6a0e4e4

The changes in this PR will be included in the next version bump.

This PR includes changesets to release 0 packages

When changesets are added to this PR, you'll see the packages that this PR includes changesets for and the associated semver types

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

@github-actions

github-actionsBot commented May 4, 2026

Copy link
Copy Markdown
Contributor

🧪 E2E Test Results

Some tests failed

Summary

PassedFailedSkippedTotal
✅ ▲ Vercel Production901067968
❌ 💻 Local Development724246861056
✅ 📦 Local Production9700861056
✅ 🐘 Local Postgres9700861056
✅ 🪟 Windows880088
❌ 🌍 Community Worlds139830222
✅ 📋 Other246018264
Total40383293434710

❌ Failed Tests

💻 Local Development (246 failed)

express-stable (82 failed):

  • DurableAgent e2e core basic text response
  • DurableAgent e2e core single tool call
  • DurableAgent e2e core multiple sequential tool calls
  • DurableAgent e2e core tool error recovery
  • DurableAgent e2e provider tools provider tool identity preserved across step boundaries
  • DurableAgent e2e provider tools mixed provider and function tools
  • DurableAgent e2e onStepFinish fires constructor + stream callbacks in order with step data
  • DurableAgent e2e onFinish fires constructor + stream callbacks in order with event data
  • DurableAgent e2e instructions string instructions are passed to the model
  • DurableAgent e2e timeout completes within timeout
  • DurableAgent e2e experimental_onStart (GAP) completes but callbacks are not called (GAP)
  • DurableAgent e2e experimental_onStepStart (GAP) completes but callbacks are not called (GAP)
  • DurableAgent e2e experimental_onToolCallStart (GAP) completes but callbacks are not called (GAP)
  • DurableAgent e2e experimental_onToolCallFinish (GAP) completes but callbacks are not called (GAP)
  • DurableAgent e2e prepareCall (GAP) completes but prepareCall is not applied (GAP)
  • DurableAgent e2e prepareStep on constructor agent-level prepareStep is called for each LLM step
  • DurableAgent e2e prepareStep on constructor stream-level prepareStep overrides constructor-level
  • DurableAgent e2e multimodal tool results passes through LanguageModelV3ToolResultOutput from tools
  • DurableAgent e2e tool approval (GAP) completes but needsApproval is not checked (GAP)
  • addTenWorkflow | wrun_01KQT3FBFBVG12VAXSNYCD38D5
  • addTenWorkflow | wrun_01KQT3FBFBVG12VAXSNYCD38D5
  • promiseAllWorkflow | wrun_01KQT3FHW2WGJBGAMNDZSXMJGE
  • promiseRaceWorkflow | wrun_01KQT3FP8BASQ5466XKXCXSTAM
  • promiseAnyWorkflow | wrun_01KQT3FR7249NC090DYN5XGT3F
  • readableStreamWorkflow | wrun_01KQT3FTE4CC3V49YCXA40KTZK
  • hookWorkflow | wrun_01KQT3G46PDRTMWS6DEG3JTMDB
  • hookWorkflow is not resumable via public webhook endpoint | wrun_01KQT3GF0TYAY99R4R8SAZSFC9
  • webhookWorkflow | wrun_01KQT3GQVESB1RERT68G05X0S0
  • webhook route with invalid token
  • sleepingWorkflow | wrun_01KQT3GZ48VM8PWXBJK9D4XJJ4
  • parallelSleepWorkflow | wrun_01KQT3HBQ529R1GR7G485QDCGA
  • nullByteWorkflow | wrun_01KQT3HFZ73PGND2GCC3M8M8JJ
  • workflowAndStepMetadataWorkflow | wrun_01KQT3HJ4DEZ9GWHKB4EGTHRH3
  • outputStreamWorkflow no startIndex (reads all chunks)
  • outputStreamWorkflow positive startIndex (skips first chunk)
  • outputStreamWorkflow negative startIndex (reads from end)
  • outputStreamWorkflow - getTailIndex and getStreamChunks getTailIndex returns correct index after stream completes
  • outputStreamWorkflow - getTailIndex and getStreamChunks getTailIndex returns -1 before any chunks are written
  • outputStreamWorkflow - getTailIndex and getStreamChunks getStreamChunks returns same content as reading the stream
  • outputStreamInsideStepWorkflow - getWritable() called inside step functions | wrun_01KQT3KY6TBX4RA7EKRM50CN3V
  • fetchWorkflow | wrun_01KQT3MBM4E4AREH2VEK828ZWX
  • promiseRaceStressTestWorkflow | wrun_01KQT3MEQRJ20E9W676GDHT1EF
  • error handling error propagation workflow errors nested function calls preserve message and stack trace
  • error handling error propagation workflow errors cross-file imports preserve message and stack trace
  • error handling error propagation step errors basic step error preserves message and stack trace
  • error handling error propagation step errors cross-file step error preserves message and function names in stack
  • error handling retry behavior regular Error retries until success
  • error handling retry behavior FatalError fails immediately without retries
  • error handling retry behavior RetryableError respects custom retryAfter delay
  • error handling retry behavior maxRetries=0 disables retries
  • error handling catchability FatalError can be caught and detected with FatalError.is()
  • error handling not registered WorkflowNotRegisteredError fails the run when workflow does not exist
  • error handling not registered StepNotRegisteredError fails the step but workflow can catch it
  • error handling not registered StepNotRegisteredError fails the run when not caught in workflow
  • stepDirectCallWorkflow - calling step functions directly outside workflow context
  • hookCleanupTestWorkflow - hook token reuse after workflow completion | wrun_01KQT3QT3GBM426YTQR012P8FP
  • concurrent hook token conflict - two workflows cannot use the same hook token simultaneously | wrun_01KQT3RDQ86BRAJ3F06ZCCEEYK
  • hookDisposeTestWorkflow - hook token reuse after explicit disposal while workflow still running | wrun_01KQT3S23PY8CM8584GRTZJGCR
  • stepFunctionPassingWorkflow - step function references can be passed as arguments (without closure vars) | wrun_01KQT3SN09P9BEP3470YYQZG22
  • stepFunctionWithClosureWorkflow - step function with closure variables passed as argument | wrun_01KQT3SXGQZFEG4SG7JT60BBDR
  • closureVariableWorkflow - nested step functions with closure variables | wrun_01KQT3T2GF5BJWTADVNH3RJN5F
  • spawnWorkflowFromStepWorkflow - spawning a child workflow using start() inside a step | wrun_01KQT3T4M25ZRNS3V4JNJ79C58
  • health check endpoint (HTTP) - workflow and step endpoints respond to __health query parameter
  • health check (queue-based) - workflow and step endpoints respond to health check messages
  • health check (CLI) - workflow health command reports healthy endpoints
  • pathsAliasWorkflow - TypeScript path aliases resolve correctly | wrun_01KQT3TKEC09ZJVHCJ4R3WFB2Q
  • Calculator.calculate - static workflow method using static step methods from another class | wrun_01KQT3TRGQNKQNQ5021Q40K85P
  • AllInOneService.processNumber - static workflow method using sibling static step methods | wrun_01KQT3TYNT6X1F8BH58CN0FME7
  • ChainableService.processWithThis - static step methods using this to reference the class | wrun_01KQT3V4YTM7F1T1T3F7CFMY12
  • thisSerializationWorkflow - step function invoked with .call() and .apply() | wrun_01KQT3VB42HXBX7YB1VQ256ER7
  • customSerializationWorkflow - custom class serialization with WORKFLOW_SERIALIZE/WORKFLOW_DESERIALIZE | wrun_01KQT3VHRKFGBFY0X8TYQC9RXB
  • instanceMethodStepWorkflow - instance methods with "use step" directive | wrun_01KQT3VS2V39G0R2W5K8ZBHRM7
  • crossContextSerdeWorkflow - classes defined in step code are deserializable in workflow context | wrun_01KQT3W3MNYXQRVMHC5A95END0
  • stepFunctionAsStartArgWorkflow - step function reference passed as start() argument | wrun_01KQT3WCK45WS5A71RX9NH7KRG
  • cancelRun - cancelling a running workflow | wrun_01KQT3WKWB5DHTECCJQMNGQV0G
  • cancelRun via CLI - cancelling a running workflow | wrun_01KQT3WWMGF0CN6T8VJEZ6C0NA
  • hookWithSleepWorkflow - hook payloads delivered correctly with concurrent sleep | wrun_01KQT3X80RE08SHRQNN3Y86QY0
  • sleepInLoopWorkflow - sleep inside loop with steps actually delays each iteration | wrun_01KQT3XVB6J6ZFX9NFVXDP6A4F
  • sleepWithSequentialStepsWorkflow - sequential steps work with concurrent sleep (control) | wrun_01KQT3Y6JYGFDQRJSK98TN73QN
  • importMetaUrlWorkflow - import.meta.url is available in step bundles | wrun_01KQT3YCQE5MRPVG85KMESEHN4
  • metadataFromHelperWorkflow - getWorkflowMetadata/getStepMetadata work from module-level helper (#1577) | wrun_01KQT3YESA6HHWR8J7N0F2KFG8
  • resilient start: addTenWorkflow completes when run_created returns 500 | wrun_01KQT3YGR7DQ4CWPZ7PXG8VGEK

fastify-stable (82 failed):

  • DurableAgent e2e core basic text response
  • DurableAgent e2e core single tool call
  • DurableAgent e2e core multiple sequential tool calls
  • DurableAgent e2e core tool error recovery
  • DurableAgent e2e provider tools provider tool identity preserved across step boundaries
  • DurableAgent e2e provider tools mixed provider and function tools
  • DurableAgent e2e onStepFinish fires constructor + stream callbacks in order with step data
  • DurableAgent e2e onFinish fires constructor + stream callbacks in order with event data
  • DurableAgent e2e instructions string instructions are passed to the model
  • DurableAgent e2e timeout completes within timeout
  • DurableAgent e2e experimental_onStart (GAP) completes but callbacks are not called (GAP)
  • DurableAgent e2e experimental_onStepStart (GAP) completes but callbacks are not called (GAP)
  • DurableAgent e2e experimental_onToolCallStart (GAP) completes but callbacks are not called (GAP)
  • DurableAgent e2e experimental_onToolCallFinish (GAP) completes but callbacks are not called (GAP)
  • DurableAgent e2e prepareCall (GAP) completes but prepareCall is not applied (GAP)
  • DurableAgent e2e prepareStep on constructor agent-level prepareStep is called for each LLM step
  • DurableAgent e2e prepareStep on constructor stream-level prepareStep overrides constructor-level
  • DurableAgent e2e multimodal tool results passes through LanguageModelV3ToolResultOutput from tools
  • DurableAgent e2e tool approval (GAP) completes but needsApproval is not checked (GAP)
  • addTenWorkflow | wrun_01KQT3FBFBVG12VAXSNYCD38D5
  • addTenWorkflow | wrun_01KQT3FBFBVG12VAXSNYCD38D5
  • promiseAllWorkflow | wrun_01KQT3FHW2WGJBGAMNDZSXMJGE
  • promiseRaceWorkflow | wrun_01KQT3FP8BASQ5466XKXCXSTAM
  • promiseAnyWorkflow | wrun_01KQT3FR7249NC090DYN5XGT3F
  • readableStreamWorkflow | wrun_01KQT3FTE4CC3V49YCXA40KTZK
  • hookWorkflow | wrun_01KQT3G46PDRTMWS6DEG3JTMDB
  • hookWorkflow is not resumable via public webhook endpoint | wrun_01KQT3GF0TYAY99R4R8SAZSFC9
  • webhookWorkflow | wrun_01KQT3GQVESB1RERT68G05X0S0
  • webhook route with invalid token
  • sleepingWorkflow | wrun_01KQT3GZ48VM8PWXBJK9D4XJJ4
  • parallelSleepWorkflow | wrun_01KQT3HBQ529R1GR7G485QDCGA
  • nullByteWorkflow | wrun_01KQT3HFZ73PGND2GCC3M8M8JJ
  • workflowAndStepMetadataWorkflow | wrun_01KQT3HJ4DEZ9GWHKB4EGTHRH3
  • outputStreamWorkflow no startIndex (reads all chunks)
  • outputStreamWorkflow positive startIndex (skips first chunk)
  • outputStreamWorkflow negative startIndex (reads from end)
  • outputStreamWorkflow - getTailIndex and getStreamChunks getTailIndex returns correct index after stream completes
  • outputStreamWorkflow - getTailIndex and getStreamChunks getTailIndex returns -1 before any chunks are written
  • outputStreamWorkflow - getTailIndex and getStreamChunks getStreamChunks returns same content as reading the stream
  • outputStreamInsideStepWorkflow - getWritable() called inside step functions | wrun_01KQT3KY6TBX4RA7EKRM50CN3V
  • fetchWorkflow | wrun_01KQT3MBM4E4AREH2VEK828ZWX
  • promiseRaceStressTestWorkflow | wrun_01KQT3MEQRJ20E9W676GDHT1EF
  • error handling error propagation workflow errors nested function calls preserve message and stack trace
  • error handling error propagation workflow errors cross-file imports preserve message and stack trace
  • error handling error propagation step errors basic step error preserves message and stack trace
  • error handling error propagation step errors cross-file step error preserves message and function names in stack
  • error handling retry behavior regular Error retries until success
  • error handling retry behavior FatalError fails immediately without retries
  • error handling retry behavior RetryableError respects custom retryAfter delay
  • error handling retry behavior maxRetries=0 disables retries
  • error handling catchability FatalError can be caught and detected with FatalError.is()
  • error handling not registered WorkflowNotRegisteredError fails the run when workflow does not exist
  • error handling not registered StepNotRegisteredError fails the step but workflow can catch it
  • error handling not registered StepNotRegisteredError fails the run when not caught in workflow
  • stepDirectCallWorkflow - calling step functions directly outside workflow context
  • hookCleanupTestWorkflow - hook token reuse after workflow completion | wrun_01KQT3QT3GBM426YTQR012P8FP
  • concurrent hook token conflict - two workflows cannot use the same hook token simultaneously | wrun_01KQT3RDQ86BRAJ3F06ZCCEEYK
  • hookDisposeTestWorkflow - hook token reuse after explicit disposal while workflow still running | wrun_01KQT3S23PY8CM8584GRTZJGCR
  • stepFunctionPassingWorkflow - step function references can be passed as arguments (without closure vars) | wrun_01KQT3SN09P9BEP3470YYQZG22
  • stepFunctionWithClosureWorkflow - step function with closure variables passed as argument | wrun_01KQT3SXGQZFEG4SG7JT60BBDR
  • closureVariableWorkflow - nested step functions with closure variables | wrun_01KQT3T2GF5BJWTADVNH3RJN5F
  • spawnWorkflowFromStepWorkflow - spawning a child workflow using start() inside a step | wrun_01KQT3T4M25ZRNS3V4JNJ79C58
  • health check endpoint (HTTP) - workflow and step endpoints respond to __health query parameter
  • health check (queue-based) - workflow and step endpoints respond to health check messages
  • health check (CLI) - workflow health command reports healthy endpoints
  • pathsAliasWorkflow - TypeScript path aliases resolve correctly | wrun_01KQT3TKEC09ZJVHCJ4R3WFB2Q
  • Calculator.calculate - static workflow method using static step methods from another class | wrun_01KQT3TRGQNKQNQ5021Q40K85P
  • AllInOneService.processNumber - static workflow method using sibling static step methods | wrun_01KQT3TYNT6X1F8BH58CN0FME7
  • ChainableService.processWithThis - static step methods using this to reference the class | wrun_01KQT3V4YTM7F1T1T3F7CFMY12
  • thisSerializationWorkflow - step function invoked with .call() and .apply() | wrun_01KQT3VB42HXBX7YB1VQ256ER7
  • customSerializationWorkflow - custom class serialization with WORKFLOW_SERIALIZE/WORKFLOW_DESERIALIZE | wrun_01KQT3VHRKFGBFY0X8TYQC9RXB
  • instanceMethodStepWorkflow - instance methods with "use step" directive | wrun_01KQT3VS2V39G0R2W5K8ZBHRM7
  • crossContextSerdeWorkflow - classes defined in step code are deserializable in workflow context | wrun_01KQT3W3MNYXQRVMHC5A95END0
  • stepFunctionAsStartArgWorkflow - step function reference passed as start() argument | wrun_01KQT3WCK45WS5A71RX9NH7KRG
  • cancelRun - cancelling a running workflow | wrun_01KQT3WKWB5DHTECCJQMNGQV0G
  • cancelRun via CLI - cancelling a running workflow | wrun_01KQT3WWMGF0CN6T8VJEZ6C0NA
  • hookWithSleepWorkflow - hook payloads delivered correctly with concurrent sleep | wrun_01KQT3X80RE08SHRQNN3Y86QY0
  • sleepInLoopWorkflow - sleep inside loop with steps actually delays each iteration | wrun_01KQT3XVB6J6ZFX9NFVXDP6A4F
  • sleepWithSequentialStepsWorkflow - sequential steps work with concurrent sleep (control) | wrun_01KQT3Y6JYGFDQRJSK98TN73QN
  • importMetaUrlWorkflow - import.meta.url is available in step bundles | wrun_01KQT3YCQE5MRPVG85KMESEHN4
  • metadataFromHelperWorkflow - getWorkflowMetadata/getStepMetadata work from module-level helper (#1577) | wrun_01KQT3YESA6HHWR8J7N0F2KFG8
  • resilient start: addTenWorkflow completes when run_created returns 500 | wrun_01KQT3YGR7DQ4CWPZ7PXG8VGEK

hono-stable (82 failed):

  • DurableAgent e2e core basic text response
  • DurableAgent e2e core single tool call
  • DurableAgent e2e core multiple sequential tool calls
  • DurableAgent e2e core tool error recovery
  • DurableAgent e2e provider tools provider tool identity preserved across step boundaries
  • DurableAgent e2e provider tools mixed provider and function tools
  • DurableAgent e2e onStepFinish fires constructor + stream callbacks in order with step data
  • DurableAgent e2e onFinish fires constructor + stream callbacks in order with event data
  • DurableAgent e2e instructions string instructions are passed to the model
  • DurableAgent e2e timeout completes within timeout
  • DurableAgent e2e experimental_onStart (GAP) completes but callbacks are not called (GAP)
  • DurableAgent e2e experimental_onStepStart (GAP) completes but callbacks are not called (GAP)
  • DurableAgent e2e experimental_onToolCallStart (GAP) completes but callbacks are not called (GAP)
  • DurableAgent e2e experimental_onToolCallFinish (GAP) completes but callbacks are not called (GAP)
  • DurableAgent e2e prepareCall (GAP) completes but prepareCall is not applied (GAP)
  • DurableAgent e2e prepareStep on constructor agent-level prepareStep is called for each LLM step
  • DurableAgent e2e prepareStep on constructor stream-level prepareStep overrides constructor-level
  • DurableAgent e2e multimodal tool results passes through LanguageModelV3ToolResultOutput from tools
  • DurableAgent e2e tool approval (GAP) completes but needsApproval is not checked (GAP)
  • addTenWorkflow | wrun_01KQT3FBFBVG12VAXSNYCD38D5
  • addTenWorkflow | wrun_01KQT3FBFBVG12VAXSNYCD38D5
  • promiseAllWorkflow | wrun_01KQT3FHW2WGJBGAMNDZSXMJGE
  • promiseRaceWorkflow | wrun_01KQT3FP8BASQ5466XKXCXSTAM
  • promiseAnyWorkflow | wrun_01KQT3FR7249NC090DYN5XGT3F
  • readableStreamWorkflow | wrun_01KQT3FTE4CC3V49YCXA40KTZK
  • hookWorkflow | wrun_01KQT3G46PDRTMWS6DEG3JTMDB
  • hookWorkflow is not resumable via public webhook endpoint | wrun_01KQT3GF0TYAY99R4R8SAZSFC9
  • webhookWorkflow | wrun_01KQT3GQVESB1RERT68G05X0S0
  • webhook route with invalid token
  • sleepingWorkflow | wrun_01KQT3GZ48VM8PWXBJK9D4XJJ4
  • parallelSleepWorkflow | wrun_01KQT3HBQ529R1GR7G485QDCGA
  • nullByteWorkflow | wrun_01KQT3HFZ73PGND2GCC3M8M8JJ
  • workflowAndStepMetadataWorkflow | wrun_01KQT3HJ4DEZ9GWHKB4EGTHRH3
  • outputStreamWorkflow no startIndex (reads all chunks)
  • outputStreamWorkflow positive startIndex (skips first chunk)
  • outputStreamWorkflow negative startIndex (reads from end)
  • outputStreamWorkflow - getTailIndex and getStreamChunks getTailIndex returns correct index after stream completes
  • outputStreamWorkflow - getTailIndex and getStreamChunks getTailIndex returns -1 before any chunks are written
  • outputStreamWorkflow - getTailIndex and getStreamChunks getStreamChunks returns same content as reading the stream
  • outputStreamInsideStepWorkflow - getWritable() called inside step functions | wrun_01KQT3KY6TBX4RA7EKRM50CN3V
  • fetchWorkflow | wrun_01KQT3MBM4E4AREH2VEK828ZWX
  • promiseRaceStressTestWorkflow | wrun_01KQT3MEQRJ20E9W676GDHT1EF
  • error handling error propagation workflow errors nested function calls preserve message and stack trace
  • error handling error propagation workflow errors cross-file imports preserve message and stack trace
  • error handling error propagation step errors basic step error preserves message and stack trace
  • error handling error propagation step errors cross-file step error preserves message and function names in stack
  • error handling retry behavior regular Error retries until success
  • error handling retry behavior FatalError fails immediately without retries
  • error handling retry behavior RetryableError respects custom retryAfter delay
  • error handling retry behavior maxRetries=0 disables retries
  • error handling catchability FatalError can be caught and detected with FatalError.is()
  • error handling not registered WorkflowNotRegisteredError fails the run when workflow does not exist
  • error handling not registered StepNotRegisteredError fails the step but workflow can catch it
  • error handling not registered StepNotRegisteredError fails the run when not caught in workflow
  • stepDirectCallWorkflow - calling step functions directly outside workflow context
  • hookCleanupTestWorkflow - hook token reuse after workflow completion | wrun_01KQT3QT3GBM426YTQR012P8FP
  • concurrent hook token conflict - two workflows cannot use the same hook token simultaneously | wrun_01KQT3RDQ86BRAJ3F06ZCCEEYK
  • hookDisposeTestWorkflow - hook token reuse after explicit disposal while workflow still running | wrun_01KQT3S23PY8CM8584GRTZJGCR
  • stepFunctionPassingWorkflow - step function references can be passed as arguments (without closure vars) | wrun_01KQT3SN09P9BEP3470YYQZG22
  • stepFunctionWithClosureWorkflow - step function with closure variables passed as argument | wrun_01KQT3SXGQZFEG4SG7JT60BBDR
  • closureVariableWorkflow - nested step functions with closure variables | wrun_01KQT3T2GF5BJWTADVNH3RJN5F
  • spawnWorkflowFromStepWorkflow - spawning a child workflow using start() inside a step | wrun_01KQT3T4M25ZRNS3V4JNJ79C58
  • health check endpoint (HTTP) - workflow and step endpoints respond to __health query parameter
  • health check (queue-based) - workflow and step endpoints respond to health check messages
  • health check (CLI) - workflow health command reports healthy endpoints
  • pathsAliasWorkflow - TypeScript path aliases resolve correctly | wrun_01KQT3TKEC09ZJVHCJ4R3WFB2Q
  • Calculator.calculate - static workflow method using static step methods from another class | wrun_01KQT3TRGQNKQNQ5021Q40K85P
  • AllInOneService.processNumber - static workflow method using sibling static step methods | wrun_01KQT3TYNT6X1F8BH58CN0FME7
  • ChainableService.processWithThis - static step methods using this to reference the class | wrun_01KQT3V4YTM7F1T1T3F7CFMY12
  • thisSerializationWorkflow - step function invoked with .call() and .apply() | wrun_01KQT3VB42HXBX7YB1VQ256ER7
  • customSerializationWorkflow - custom class serialization with WORKFLOW_SERIALIZE/WORKFLOW_DESERIALIZE | wrun_01KQT3VHRKFGBFY0X8TYQC9RXB
  • instanceMethodStepWorkflow - instance methods with "use step" directive | wrun_01KQT3VS2V39G0R2W5K8ZBHRM7
  • crossContextSerdeWorkflow - classes defined in step code are deserializable in workflow context | wrun_01KQT3W3MNYXQRVMHC5A95END0
  • stepFunctionAsStartArgWorkflow - step function reference passed as start() argument | wrun_01KQT3WCK45WS5A71RX9NH7KRG
  • cancelRun - cancelling a running workflow | wrun_01KQT3WKWB5DHTECCJQMNGQV0G
  • cancelRun via CLI - cancelling a running workflow | wrun_01KQT3WWMGF0CN6T8VJEZ6C0NA
  • hookWithSleepWorkflow - hook payloads delivered correctly with concurrent sleep | wrun_01KQT3X80RE08SHRQNN3Y86QY0
  • sleepInLoopWorkflow - sleep inside loop with steps actually delays each iteration | wrun_01KQT3XVB6J6ZFX9NFVXDP6A4F
  • sleepWithSequentialStepsWorkflow - sequential steps work with concurrent sleep (control) | wrun_01KQT3Y6JYGFDQRJSK98TN73QN
  • importMetaUrlWorkflow - import.meta.url is available in step bundles | wrun_01KQT3YCQE5MRPVG85KMESEHN4
  • metadataFromHelperWorkflow - getWorkflowMetadata/getStepMetadata work from module-level helper (#1577) | wrun_01KQT3YESA6HHWR8J7N0F2KFG8
  • resilient start: addTenWorkflow completes when run_created returns 500 | wrun_01KQT3YGR7DQ4CWPZ7PXG8VGEK
🌍 Community Worlds (83 failed)

mongodb (11 failed):

  • readableStreamWorkflow | wrun_01KQT3FTE4CC3V49YCXA40KTZK
  • hookWorkflow is not resumable via public webhook endpoint | wrun_01KQT3GF0TYAY99R4R8SAZSFC9
  • webhookWorkflow | wrun_01KQT3GQVESB1RERT68G05X0S0
  • outputStreamWorkflow no startIndex (reads all chunks)
  • outputStreamWorkflow negative startIndex (reads from end)
  • outputStreamWorkflow - getTailIndex and getStreamChunks getTailIndex returns correct index after stream completes
  • outputStreamWorkflow - getTailIndex and getStreamChunks getTailIndex returns -1 before any chunks are written
  • outputStreamWorkflow - getTailIndex and getStreamChunks getStreamChunks returns same content as reading the stream
  • outputStreamInsideStepWorkflow - getWritable() called inside step functions | wrun_01KQT3KY6TBX4RA7EKRM50CN3V
  • concurrent hook token conflict - two workflows cannot use the same hook token simultaneously | wrun_01KQT3RDQ86BRAJ3F06ZCCEEYK
  • resilient start: addTenWorkflow completes when run_created returns 500 | wrun_01KQT3YGR7DQ4CWPZ7PXG8VGEK

redis (7 failed):

  • hookWorkflow is not resumable via public webhook endpoint | wrun_01KQT3GF0TYAY99R4R8SAZSFC9
  • outputStreamWorkflow negative startIndex (reads from end)
  • outputStreamWorkflow - getTailIndex and getStreamChunks getTailIndex returns correct index after stream completes
  • outputStreamWorkflow - getTailIndex and getStreamChunks getTailIndex returns -1 before any chunks are written
  • outputStreamWorkflow - getTailIndex and getStreamChunks getStreamChunks returns same content as reading the stream
  • concurrent hook token conflict - two workflows cannot use the same hook token simultaneously | wrun_01KQT3RDQ86BRAJ3F06ZCCEEYK
  • resilient start: addTenWorkflow completes when run_created returns 500 | wrun_01KQT3YGR7DQ4CWPZ7PXG8VGEK

turso (65 failed):

  • addTenWorkflow | wrun_01KQT3FBFBVG12VAXSNYCD38D5
  • addTenWorkflow | wrun_01KQT3FBFBVG12VAXSNYCD38D5
  • wellKnownAgentWorkflow (.well-known/agent) | wrun_01KQT3H4R6SJD6A42YJS2ABWQ5
  • should work with react rendering in step
  • promiseAllWorkflow | wrun_01KQT3FHW2WGJBGAMNDZSXMJGE
  • promiseRaceWorkflow | wrun_01KQT3FP8BASQ5466XKXCXSTAM
  • promiseAnyWorkflow | wrun_01KQT3FR7249NC090DYN5XGT3F
  • importedStepOnlyWorkflow | wrun_01KQT3HEM83G8SG7C6R17MACB6
  • readableStreamWorkflow | wrun_01KQT3FTE4CC3V49YCXA40KTZK
  • hookWorkflow | wrun_01KQT3G46PDRTMWS6DEG3JTMDB
  • hookWorkflow is not resumable via public webhook endpoint | wrun_01KQT3GF0TYAY99R4R8SAZSFC9
  • webhookWorkflow | wrun_01KQT3GQVESB1RERT68G05X0S0
  • sleepingWorkflow | wrun_01KQT3GZ48VM8PWXBJK9D4XJJ4
  • parallelSleepWorkflow | wrun_01KQT3HBQ529R1GR7G485QDCGA
  • nullByteWorkflow | wrun_01KQT3HFZ73PGND2GCC3M8M8JJ
  • workflowAndStepMetadataWorkflow | wrun_01KQT3HJ4DEZ9GWHKB4EGTHRH3
  • outputStreamWorkflow no startIndex (reads all chunks)
  • outputStreamWorkflow positive startIndex (skips first chunk)
  • outputStreamWorkflow negative startIndex (reads from end)
  • outputStreamWorkflow - getTailIndex and getStreamChunks getTailIndex returns correct index after stream completes
  • outputStreamWorkflow - getTailIndex and getStreamChunks getTailIndex returns -1 before any chunks are written
  • outputStreamWorkflow - getTailIndex and getStreamChunks getStreamChunks returns same content as reading the stream
  • outputStreamInsideStepWorkflow - getWritable() called inside step functions | wrun_01KQT3KY6TBX4RA7EKRM50CN3V
  • fetchWorkflow | wrun_01KQT3MBM4E4AREH2VEK828ZWX
  • promiseRaceStressTestWorkflow | wrun_01KQT3MEQRJ20E9W676GDHT1EF
  • error handling error propagation workflow errors nested function calls preserve message and stack trace
  • error handling error propagation workflow errors cross-file imports preserve message and stack trace
  • error handling error propagation step errors basic step error preserves message and stack trace
  • error handling error propagation step errors cross-file step error preserves message and function names in stack
  • error handling retry behavior regular Error retries until success
  • error handling retry behavior FatalError fails immediately without retries
  • error handling retry behavior RetryableError respects custom retryAfter delay
  • error handling retry behavior maxRetries=0 disables retries
  • error handling catchability FatalError can be caught and detected with FatalError.is()
  • error handling not registered WorkflowNotRegisteredError fails the run when workflow does not exist
  • error handling not registered StepNotRegisteredError fails the step but workflow can catch it
  • error handling not registered StepNotRegisteredError fails the run when not caught in workflow
  • hookCleanupTestWorkflow - hook token reuse after workflow completion | wrun_01KQT3QT3GBM426YTQR012P8FP
  • concurrent hook token conflict - two workflows cannot use the same hook token simultaneously | wrun_01KQT3RDQ86BRAJ3F06ZCCEEYK
  • hookDisposeTestWorkflow - hook token reuse after explicit disposal while workflow still running | wrun_01KQT3S23PY8CM8584GRTZJGCR
  • stepFunctionPassingWorkflow - step function references can be passed as arguments (without closure vars) | wrun_01KQT3SN09P9BEP3470YYQZG22
  • stepFunctionWithClosureWorkflow - step function with closure variables passed as argument | wrun_01KQT3SXGQZFEG4SG7JT60BBDR
  • closureVariableWorkflow - nested step functions with closure variables | wrun_01KQT3T2GF5BJWTADVNH3RJN5F
  • spawnWorkflowFromStepWorkflow - spawning a child workflow using start() inside a step | wrun_01KQT3T4M25ZRNS3V4JNJ79C58
  • health check (queue-based) - workflow and step endpoints respond to health check messages
  • pathsAliasWorkflow - TypeScript path aliases resolve correctly | wrun_01KQT3TKEC09ZJVHCJ4R3WFB2Q
  • Calculator.calculate - static workflow method using static step methods from another class | wrun_01KQT3TRGQNKQNQ5021Q40K85P
  • AllInOneService.processNumber - static workflow method using sibling static step methods | wrun_01KQT3TYNT6X1F8BH58CN0FME7
  • ChainableService.processWithThis - static step methods using this to reference the class | wrun_01KQT3V4YTM7F1T1T3F7CFMY12
  • thisSerializationWorkflow - step function invoked with .call() and .apply() | wrun_01KQT3VB42HXBX7YB1VQ256ER7
  • customSerializationWorkflow - custom class serialization with WORKFLOW_SERIALIZE/WORKFLOW_DESERIALIZE | wrun_01KQT3VHRKFGBFY0X8TYQC9RXB
  • instanceMethodStepWorkflow - instance methods with "use step" directive | wrun_01KQT3VS2V39G0R2W5K8ZBHRM7
  • crossContextSerdeWorkflow - classes defined in step code are deserializable in workflow context | wrun_01KQT3W3MNYXQRVMHC5A95END0
  • stepFunctionAsStartArgWorkflow - step function reference passed as start() argument | wrun_01KQT3WCK45WS5A71RX9NH7KRG
  • cancelRun - cancelling a running workflow | wrun_01KQT3WKWB5DHTECCJQMNGQV0G
  • cancelRun via CLI - cancelling a running workflow | wrun_01KQT3WWMGF0CN6T8VJEZ6C0NA
  • pages router addTenWorkflow via pages router
  • pages router promiseAllWorkflow via pages router
  • pages router sleepingWorkflow via pages router
  • hookWithSleepWorkflow - hook payloads delivered correctly with concurrent sleep | wrun_01KQT3X80RE08SHRQNN3Y86QY0
  • sleepInLoopWorkflow - sleep inside loop with steps actually delays each iteration | wrun_01KQT3XVB6J6ZFX9NFVXDP6A4F
  • sleepWithSequentialStepsWorkflow - sequential steps work with concurrent sleep (control) | wrun_01KQT3Y6JYGFDQRJSK98TN73QN
  • importMetaUrlWorkflow - import.meta.url is available in step bundles | wrun_01KQT3YCQE5MRPVG85KMESEHN4
  • metadataFromHelperWorkflow - getWorkflowMetadata/getStepMetadata work from module-level helper (#1577) | wrun_01KQT3YESA6HHWR8J7N0F2KFG8
  • resilient start: addTenWorkflow completes when run_created returns 500 | wrun_01KQT3YGR7DQ4CWPZ7PXG8VGEK

Details by Category

✅ ▲ Vercel Production
AppPassedFailedSkipped
✅ astro8107
✅ example8107
✅ express8107
✅ fastify8107
✅ hono8107
✅ nextjs-turbopack8602
✅ nextjs-webpack8602
✅ nitro8107
✅ nuxt8107
✅ sveltekit8107
✅ vite8107
❌ 💻 Local Development
AppPassedFailedSkipped
✅ astro-stable8206
❌ express-stable0826
❌ fastify-stable0826
❌ hono-stable0826
✅ nextjs-turbopack-canary69019
✅ nextjs-turbopack-stable8800
✅ nextjs-webpack-canary69019
✅ nextjs-webpack-stable8800
✅ nitro-stable8206
✅ nuxt-stable8206
✅ sveltekit-stable8206
✅ vite-stable8206
✅ 📦 Local Production
AppPassedFailedSkipped
✅ astro-stable8206
✅ express-stable8206
✅ fastify-stable8206
✅ hono-stable8206
✅ nextjs-turbopack-canary69019
✅ nextjs-turbopack-stable8800
✅ nextjs-webpack-canary69019
✅ nextjs-webpack-stable8800
✅ nitro-stable8206
✅ nuxt-stable8206
✅ sveltekit-stable8206
✅ vite-stable8206
✅ 🐘 Local Postgres
AppPassedFailedSkipped
✅ astro-stable8206
✅ express-stable8206
✅ fastify-stable8206
✅ hono-stable8206
✅ nextjs-turbopack-canary69019
✅ nextjs-turbopack-stable8800
✅ nextjs-webpack-canary69019
✅ nextjs-webpack-stable8800
✅ nitro-stable8206
✅ nuxt-stable8206
✅ sveltekit-stable8206
✅ vite-stable8206
✅ 🪟 Windows
AppPassedFailedSkipped
✅ nextjs-turbopack8800
❌ 🌍 Community Worlds
AppPassedFailedSkipped
✅ mongodb-dev500
❌ mongodb58110
✅ redis-dev500
❌ redis6270
✅ turso-dev500
❌ turso4650
✅ 📋 Other
AppPassedFailedSkipped
✅ e2e-local-dev-nest-stable8206
✅ e2e-local-postgres-nest-stable8206
✅ e2e-local-prod-nest-stable8206

📋 View full workflow run


Some E2E test jobs failed:

  • Vercel Prod: success
  • Local Dev: failure
  • Local Prod: success
  • Local Postgres: success
  • Windows: success

Check the workflow run for details.

@vercel

vercelBot commented May 4, 2026

Copy link
Copy Markdown
Contributor

CopilotAI left a comment

Copy link
Copy Markdown
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Pull request overview

Backports the main-branch fix for failing stable E2E “vite local dev” tests by aligning the step source-map expectation logic with Vite’s current dev-mode behavior, alongside bumping Vite to the intended version across workbenches.

Changes:

  • Bump vite to ^7.3.2 in the Vite and SvelteKit workbenches and update pnpm-lock.yaml accordingly.
  • Update hasStepSourceMaps() to no longer treat vite as a special case (so vite local-dev participates in step source-map assertions when DEV_TEST_CONFIG is set).
  • Add an empty changeset entry (test-only/backport bookkeeping).

Reviewed changes

Copilot reviewed 4 out of 5 changed files in this pull request and generated no comments.

Show a summary per file
FileDescription
workbench/vite/package.jsonBumps Vite devDependency to ^7.3.2 (and minor devDependency reordering).
workbench/sveltekit/package.jsonBumps Vite devDependency to ^7.3.2 for SvelteKit workbench consistency.
pnpm-lock.yamlLockfile regeneration to reflect the Vite bump and dependency graph updates.
packages/core/e2e/utils.tsRemoves vite-specific “no step sourcemaps” carve-out so local-dev expectations match actual stacks.
.changeset/fix-vite-step-source-maps-e2e.mdAdds an empty changeset file for this backport/test-only change.

💡 Add Copilot custom instructions for smarter, more guided reviews. Learn how to get started.

@TooTallNate
TooTallNate merged commit 077eb2a into stableMay 4, 2026
88 of 92 checks passed
@TooTallNate
TooTallNate deleted the nate/backport-vite-step-source-maps-stable branch May 4, 2026 18:30
Sign up for freeto join this conversation on GitHub. Already have an account? Sign in to comment

Labels

None yet

Projects

None yet

Development

Successfully merging this pull request may close these issues.

3 participants

@TooTallNate@karthikscale3