') + ')', 'gi'); if (regex.test(text)) { found = true; var frag = document.createDocumentFragment(); var parts = text.split(regex); parts.forEach(function(part, i) { if (i % 2 === 0) { frag.appendChild(document.createTextNode(part)); } else { var span = document.createElement('span'); span.className = 'userscript-highlight'; span.textContent = part; frag.appendChild(span); } }); node.parentNode.replaceChild(frag, node); } }); } else if (node.nodeType === 1 && node.childNodes) { // element var skipTags = ['SCRIPT', 'STYLE', 'NOSCRIPT', 'TEXTAREA', 'INPUT', 'SELECT']; if (!skipTags.includes(node.tagName)) { Array.from(node.childNodes).forEach(highlight); } } } highlight(document.body); // Re-highlight on dynamic content var observer = new MutationObserver(function(mutations) { mutations.forEach(function(m) { m.addedNodes.forEach(function(node) { if (node.nodeType === 1 || node.nodeType === 3) highlight(node); }); }); }); observer.observe(document.body, { childList: true, subtree: true }); })(); } } catch(__e) { console.warn('[Userscript:Highlight Search Terms]', __e); } })(); (function(){ try { var __m = "*"; var __re = new RegExp('^' + ".*" + ', 'i'); if (__m === '*' || __re.test(location.href)) { // Strip utm_, fbclid, gclid, etc. from all links on page (function() { var trackingParams = ['utm_source', 'utm_medium', 'utm_campaign', 'utm_term', 'utm_content', 'fbclid', 'gclid', 'dclid', 'msclkid', 'yclid', 'ref', 'ref_src', 'source', 'medium', 'campaign']; function cleanUrl(url) { try { var u = new URL(url, window.location.origin); var changed = false; trackingParams.forEach(function(p) { if (u.searchParams.has(p)) { u.searchParams.delete(p); changed = true; } }); return changed ? u.toString() : url; } catch (e) { return url; } } function cleanLinks() { document.querySelectorAll('a[href]').forEach(function(a) { var clean = cleanUrl(a.href); if (clean !== a.href) a.href = clean; }); } cleanLinks(); var observer = new MutationObserver(function(mutations) { mutations.forEach(function(m) { m.addedNodes.forEach(function(node) { if (node.nodeType === 1) { if (node.tagName === 'A') cleanLinks(); node.querySelectorAll('a[href]').forEach(function(a) { var clean = cleanUrl(a.href); if (clean !== a.href) a.href = clean; }); } }); }); }); observer.observe(document.body, { childList: true, subtree: true }); })(); } } catch(__e) { console.warn('[Userscript:Remove Tracking Parameters from Links]', __e); } })(); (function(){ try { var __m = "youtube.com"; var __re = new RegExp('^' + "youtube\\.com" + ', 'i'); if (__m === '*' || __re.test(location.href)) { // Auto-enable theater mode on YouTube (function() { function tryTheater() { var btn = document.querySelector('button[aria-label="Theater mode"], ytd-player #player button[title="Theater mode"]'); if (btn && !btn.classList.contains('activated')) { btn.click(); } } // Try immediately tryTheater(); // Try after navigation (SPA) var lastUrl = location.href; setInterval(function() { if (location.href !== lastUrl) { lastUrl = location.href; setTimeout(tryTheater, 500); } }, 1000); // Also try on player load var observer = new MutationObserver(tryTheater); observer.observe(document.body, { childList: true, subtree: true }); })(); } } catch(__e) { console.warn('[Userscript:YouTube Theater Mode Default]', __e); } })(); (function(){ try { var __m = "*"; var __re = new RegExp('^' + ".*" + ', 'i'); if (__m === '*' || __re.test(location.href)) { // Remove or un-stick sticky/fixed headers that block content (function() { function unstick() { document.querySelectorAll('header, nav, [role="banner"], .header, .navbar, .sticky, .fixed-top, [style*="position: fixed"], [style*="position:sticky"]').forEach(function(el) { if (el.style.position === 'fixed' || el.style.position === 'sticky' || getComputedStyle(el).position === 'fixed' || getComputedStyle(el).position === 'sticky') { el.style.position = 'static'; el.style.top = 'auto'; el.style.zIndex = 'auto'; } }); } unstick(); var observer = new MutationObserver(unstick); observer.observe(document.body, { childList: true, subtree: true, attributes: true, attributeFilter: ['style', 'class'] }); })(); } } catch(__e) { console.warn('[Userscript:Kill Sticky Headers]', __e); } })(); })(); Backport #3055: [world-testing] Fix Unit Tests flake after adding event-limit test by github-actions[bot] · Pull Request #3104 · vercel/workflow · GitHub
Skip to content

Backport #3055: [world-testing] Fix Unit Tests flake after adding event-limit test - #3104

Merged
VaguelySerious merged 1 commit into
stablefrom
backport/pr-3055-to-stable
Jul 25, 2026
Merged

Backport #3055: [world-testing] Fix Unit Tests flake after adding event-limit test#3104
VaguelySerious merged 1 commit into
stablefrom
backport/pr-3055-to-stable

Conversation

@github-actions

Copy link
Copy Markdown
Contributor

Automated backport of #3055 to stable (backport job run).

AI recommendation: This is a test-infrastructure fix for a flaky test suite: it gives each spawned Local World test server its own WORKFLOW_LOCAL_DATA_DIR so concurrent test servers stop re-enqueuing each other's in-flight runs, plus a Windows-safe teardown. packages/world-testing/src/util.mts exists on stable with the same unisolated startServer() shared-.workflow-data behavior, and WORKFLOW_LOCAL_DATA_DIR is already supported by world-local on stable, so the fix applies to existing behavior and keeps the maintenance line's tests reliable (note: stable's startServer lacks the opts.env parameter, so a small conflict resolution may be needed).

Merge conflicts were resolved by AI (opencode with anthropic/claude-opus-5). Please review the conflict resolution carefully before merging.

)
Signed-off-by: Peter Wielander <mittgfu@gmail.com>
@changeset-bot

Copy link
Copy Markdown

🦋 Changeset detected

Latest commit: 26bde2b

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

This PR includes changesets to release 1 package
NameType
@workflow/world-testingPatch

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

@vercel

vercelBot commented Jul 24, 2026

Copy link
Copy Markdown
Contributor

@github-actions

github-actionsBot commented Jul 24, 2026

Copy link
Copy Markdown
ContributorAuthor

🧪 E2E Test Results

Some tests failed

Summary

PassedFailedSkippedTotal
❌ ▲ Vercel Production679398781155
✅ 💻 Local Development11740861260
✅ 📦 Local Production11740861260
✅ 🐘 Local Postgres11740861260
✅ 🪟 Windows10500105
❌ 🌍 Community Worlds821029193
✅ 📋 Other594036630
Total49825003815863

❌ Failed Tests

▲ Vercel Production (398 failed)

astro (33 failed):

  • hookCleanupTestWorkflow - hook token reuse after workflow completion | wrun_01KYB5Z3ZZEC4JZR9XF22EGKXY | 🔍 observability
  • concurrent hook token conflict - two workflows cannot use the same hook token simultaneously | wrun_01KYB5Z7ZMWEBRSG6RS64M4DBC | 🔍 observability
  • hookGetConflictWorkflow - awaiting hook.getConflict() registers hook without payload
  • 'hookGetConflictWithPriorStepWorkflow' - hook.getConflict() does not block step execution | wrun_01KYB5Z9VQVYESNHA77ATN4SGC | 🔍 observability
  • 'hookGetConflictWithParallelStepWorkfl…' - hook.getConflict() does not block step execution | wrun_01KYB5Z8W9Z0N1HX64E9WF8E49 | 🔍 observability
  • hookGetConflictThenStepParallelWorkflow - hook.getConflict() continuation step runs alongside other steps | wrun_01KYB5Z8V9HT55T043PV9325MM | 🔍 observability
  • hookGetConflictWorkflow - hook.getConflict() resolves with the conflicting run when token is already registered | wrun_01KYB5ZASW23HBJ4WG10RC37A5 | 🔍 observability
  • hookClaimOnlyMutexWorkflow - hook works as a pure run mutex without payload data | wrun_01KYB6018JQYZA02S424DTBD2N | 🔍 observability
  • hookAdoptOwnerResultWorkflow - duplicate adopts the owner result via conflict.returnValue | wrun_01KYB60BFE47C892AK86B1SHHQ | 🔍 observability
  • hookSignalOwnerWorkflow - duplicate forwards its payload to the owner via resumeHook | wrun_01KYB5ZGNZHTT7P6A57G05SJTM | 🔍 observability
  • hookSupersedeOwnerWorkflow - duplicate cancels the owner and claims the released token | wrun_01KYB5ZJMBBSTYAZ2WRQA232DW | 🔍 observability
  • resume-or-start route pattern - resumeHook retried after start() reaches the new run | wrun_01KYB60381CDYT3MM95ZEMJ59W | 🔍 observability
  • hookDisposeTestWorkflow - hook token reuse after explicit disposal while workflow still running | wrun_01KYB607576DEERRW27639Z1XW | 🔍 observability
  • stepFunctionWithClosureWorkflow - step function with closure variables passed as argument | wrun_01KYB5ZENEBQAGCN0A7KH4HM9Z | 🔍 observability
  • closureVariableWorkflow - nested step functions with closure variables | wrun_01KYB60E2BCYS1QDJFM65NWZQW | 🔍 observability
  • spawnWorkflowFromStepWorkflow - spawning a child workflow using start() inside a step | wrun_01KYB6091J6SJYBHQMGAT10H02 | 🔍 observability
  • Calculator.calculate - static workflow method using static step methods from another class | wrun_01KYB60GVBXQPAEWGERCFM50WC | 🔍 observability
  • AllInOneService.processNumber - static workflow method using sibling static step methods | wrun_01KYB60MSSNZYQPBBMGAFPSMDA | 🔍 observability
  • ChainableService.processWithThis - static step methods using this to reference the class | wrun_01KYB60RVQBB34HKJGBBQF6BQC | 🔍 observability
  • thisSerializationWorkflow - step function invoked with .call() and .apply() | wrun_01KYB60TMW6BVW91S9GRSA5G66 | 🔍 observability
  • customSerializationWorkflow - custom class serialization with WORKFLOW_SERIALIZE/WORKFLOW_DESERIALIZE | wrun_01KYB5ZQFCNXBFCF53HB0WSEHM | 🔍 observability
  • instanceMethodStepWorkflow - instance methods with "use step" directive | wrun_01KYB5ZVT3YKCNJETE22JRPM53 | 🔍 observability
  • crossContextSerdeWorkflow - classes defined in step code are deserializable in workflow context | wrun_01KYB602D12QSKA4M3MABD40JZ | 🔍 observability
  • stepFunctionAsStartArgWorkflow - step function reference passed as start() argument
  • cancelRun - cancelling a running workflow | wrun_01KYB617ERA4553ZMXYNQW2CC2 | 🔍 observability
  • cancelRun via CLI - cancelling a running workflow | wrun_01KYB60XGA7MJHC97ZRPHXPEFA | 🔍 observability
  • hookWithSleepWorkflow - hook payloads delivered correctly with concurrent sleep | wrun_01KYB60832QC6C1DZ0TT55CNDD | 🔍 observability
  • hookWithSleepFinalStepWorkflow - step only on final payload | wrun_01KYB60B8Z8ER8SHDK59FNKQJ5 | 🔍 observability
  • sleepInLoopWorkflow - sleep inside loop with steps actually delays each iteration | wrun_01KYB60DBG3DQT63AEB9Y1XHE6 | 🔍 observability
  • sleepWithSequentialStepsWorkflow - sequential steps work with concurrent sleep (control) | wrun_01KYB60RYGJPYPK0D6HRVBEW3K | 🔍 observability
  • importMetaUrlWorkflow - import.meta.url is available in step bundles | wrun_01KYB60B7HC12QJYHZVHG89ZEN | 🔍 observability
  • metadataFromHelperWorkflow - getWorkflowMetadata/getStepMetadata work from module-level helper (#1577) | wrun_01KYB611GDSE752X53D4KF78BS | 🔍 observability
  • resilient start: addTenWorkflow completes when run_created returns 500 | wrun_01KYB614B1V9A99SMXND9N86EB | 🔍 observability

example (37 failed):

  • 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_01KYB5Z3ZZEC4JZR9XF22EGKXY | 🔍 observability
  • concurrent hook token conflict - two workflows cannot use the same hook token simultaneously | wrun_01KYB5Z7ZMWEBRSG6RS64M4DBC | 🔍 observability
  • hookGetConflictWorkflow - awaiting hook.getConflict() registers hook without payload
  • 'hookGetConflictWithPriorStepWorkflow' - hook.getConflict() does not block step execution | wrun_01KYB5Z9VQVYESNHA77ATN4SGC | 🔍 observability
  • 'hookGetConflictWithParallelStepWorkfl…' - hook.getConflict() does not block step execution | wrun_01KYB5Z8W9Z0N1HX64E9WF8E49 | 🔍 observability
  • hookGetConflictThenStepParallelWorkflow - hook.getConflict() continuation step runs alongside other steps | wrun_01KYB5Z8V9HT55T043PV9325MM | 🔍 observability
  • hookGetConflictWorkflow - hook.getConflict() resolves with the conflicting run when token is already registered | wrun_01KYB5ZASW23HBJ4WG10RC37A5 | 🔍 observability
  • hookClaimOnlyMutexWorkflow - hook works as a pure run mutex without payload data | wrun_01KYB6018JQYZA02S424DTBD2N | 🔍 observability
  • hookAdoptOwnerResultWorkflow - duplicate adopts the owner result via conflict.returnValue | wrun_01KYB60BFE47C892AK86B1SHHQ | 🔍 observability
  • hookSignalOwnerWorkflow - duplicate forwards its payload to the owner via resumeHook | wrun_01KYB5ZGNZHTT7P6A57G05SJTM | 🔍 observability
  • hookSupersedeOwnerWorkflow - duplicate cancels the owner and claims the released token | wrun_01KYB5ZJMBBSTYAZ2WRQA232DW | 🔍 observability
  • resume-or-start route pattern - resumeHook retried after start() reaches the new run | wrun_01KYB60381CDYT3MM95ZEMJ59W | 🔍 observability
  • hookDisposeTestWorkflow - hook token reuse after explicit disposal while workflow still running | wrun_01KYB607576DEERRW27639Z1XW | 🔍 observability
  • stepFunctionPassingWorkflow - step function references can be passed as arguments (without closure vars) | wrun_01KYB6087JZBH9JC0YE9J3FE83 | 🔍 observability
  • stepFunctionWithClosureWorkflow - step function with closure variables passed as argument | wrun_01KYB5ZENEBQAGCN0A7KH4HM9Z | 🔍 observability
  • closureVariableWorkflow - nested step functions with closure variables | wrun_01KYB60E2BCYS1QDJFM65NWZQW | 🔍 observability
  • spawnWorkflowFromStepWorkflow - spawning a child workflow using start() inside a step | wrun_01KYB6091J6SJYBHQMGAT10H02 | 🔍 observability
  • pathsAliasWorkflow - TypeScript path aliases resolve correctly | wrun_01KYB60R0QVN7FT12AZHKM10CB | 🔍 observability
  • Calculator.calculate - static workflow method using static step methods from another class | wrun_01KYB60GVBXQPAEWGERCFM50WC | 🔍 observability
  • ChainableService.processWithThis - static step methods using this to reference the class | wrun_01KYB60RVQBB34HKJGBBQF6BQC | 🔍 observability
  • thisSerializationWorkflow - step function invoked with .call() and .apply() | wrun_01KYB60TMW6BVW91S9GRSA5G66 | 🔍 observability
  • customSerializationWorkflow - custom class serialization with WORKFLOW_SERIALIZE/WORKFLOW_DESERIALIZE | wrun_01KYB5ZQFCNXBFCF53HB0WSEHM | 🔍 observability
  • instanceMethodStepWorkflow - instance methods with "use step" directive | wrun_01KYB5ZVT3YKCNJETE22JRPM53 | 🔍 observability
  • crossContextSerdeWorkflow - classes defined in step code are deserializable in workflow context | wrun_01KYB602D12QSKA4M3MABD40JZ | 🔍 observability
  • stepFunctionAsStartArgWorkflow - step function reference passed as start() argument
  • cancelRun - cancelling a running workflow | wrun_01KYB617ERA4553ZMXYNQW2CC2 | 🔍 observability
  • cancelRun via CLI - cancelling a running workflow | wrun_01KYB60XGA7MJHC97ZRPHXPEFA | 🔍 observability
  • hookWithSleepWorkflow - hook payloads delivered correctly with concurrent sleep | wrun_01KYB60832QC6C1DZ0TT55CNDD | 🔍 observability
  • hookWithSleepFinalStepWorkflow - step only on final payload | wrun_01KYB60B8Z8ER8SHDK59FNKQJ5 | 🔍 observability
  • sleepInLoopWorkflow - sleep inside loop with steps actually delays each iteration | wrun_01KYB60DBG3DQT63AEB9Y1XHE6 | 🔍 observability
  • sleepWithSequentialStepsWorkflow - sequential steps work with concurrent sleep (control) | wrun_01KYB60RYGJPYPK0D6HRVBEW3K | 🔍 observability
  • importMetaUrlWorkflow - import.meta.url is available in step bundles | wrun_01KYB60B7HC12QJYHZVHG89ZEN | 🔍 observability
  • metadataFromHelperWorkflow - getWorkflowMetadata/getStepMetadata work from module-level helper (#1577) | wrun_01KYB611GDSE752X53D4KF78BS | 🔍 observability
  • resilient start: addTenWorkflow completes when run_created returns 500 | wrun_01KYB614B1V9A99SMXND9N86EB | 🔍 observability

express (34 failed):

  • parallelStepsThenWebhookWorkflow - no hook_conflict from same-tick replay race | wrun_01KYB5PMG3MCR4K0VAWB2Y9575 | 🔍 observability
  • hookCleanupTestWorkflow - hook token reuse after workflow completion | wrun_01KYB5Z3ZZEC4JZR9XF22EGKXY | 🔍 observability
  • concurrent hook token conflict - two workflows cannot use the same hook token simultaneously | wrun_01KYB5Z7ZMWEBRSG6RS64M4DBC | 🔍 observability
  • hookGetConflictWorkflow - awaiting hook.getConflict() registers hook without payload
  • 'hookGetConflictWithParallelStepWorkfl…' - hook.getConflict() does not block step execution | wrun_01KYB5Z8W9Z0N1HX64E9WF8E49 | 🔍 observability
  • hookGetConflictThenStepParallelWorkflow - hook.getConflict() continuation step runs alongside other steps | wrun_01KYB5Z8V9HT55T043PV9325MM | 🔍 observability
  • hookGetConflictWorkflow - hook.getConflict() resolves with the conflicting run when token is already registered | wrun_01KYB5ZASW23HBJ4WG10RC37A5 | 🔍 observability
  • hookClaimOnlyMutexWorkflow - hook works as a pure run mutex without payload data | wrun_01KYB6018JQYZA02S424DTBD2N | 🔍 observability
  • hookAdoptOwnerResultWorkflow - duplicate adopts the owner result via conflict.returnValue | wrun_01KYB60BFE47C892AK86B1SHHQ | 🔍 observability
  • hookSignalOwnerWorkflow - duplicate forwards its payload to the owner via resumeHook | wrun_01KYB5ZGNZHTT7P6A57G05SJTM | 🔍 observability
  • hookSupersedeOwnerWorkflow - duplicate cancels the owner and claims the released token | wrun_01KYB5ZJMBBSTYAZ2WRQA232DW | 🔍 observability
  • resume-or-start route pattern - resumeHook retried after start() reaches the new run | wrun_01KYB60381CDYT3MM95ZEMJ59W | 🔍 observability
  • hookDisposeTestWorkflow - hook token reuse after explicit disposal while workflow still running | wrun_01KYB607576DEERRW27639Z1XW | 🔍 observability
  • stepFunctionPassingWorkflow - step function references can be passed as arguments (without closure vars) | wrun_01KYB6087JZBH9JC0YE9J3FE83 | 🔍 observability
  • stepFunctionWithClosureWorkflow - step function with closure variables passed as argument | wrun_01KYB5ZENEBQAGCN0A7KH4HM9Z | 🔍 observability
  • closureVariableWorkflow - nested step functions with closure variables | wrun_01KYB60E2BCYS1QDJFM65NWZQW | 🔍 observability
  • spawnWorkflowFromStepWorkflow - spawning a child workflow using start() inside a step | wrun_01KYB6091J6SJYBHQMGAT10H02 | 🔍 observability
  • pathsAliasWorkflow - TypeScript path aliases resolve correctly | wrun_01KYB60R0QVN7FT12AZHKM10CB | 🔍 observability
  • Calculator.calculate - static workflow method using static step methods from another class | wrun_01KYB60GVBXQPAEWGERCFM50WC | 🔍 observability
  • AllInOneService.processNumber - static workflow method using sibling static step methods | wrun_01KYB60MSSNZYQPBBMGAFPSMDA | 🔍 observability
  • ChainableService.processWithThis - static step methods using this to reference the class | wrun_01KYB60RVQBB34HKJGBBQF6BQC | 🔍 observability
  • thisSerializationWorkflow - step function invoked with .call() and .apply() | wrun_01KYB60TMW6BVW91S9GRSA5G66 | 🔍 observability
  • customSerializationWorkflow - custom class serialization with WORKFLOW_SERIALIZE/WORKFLOW_DESERIALIZE | wrun_01KYB5ZQFCNXBFCF53HB0WSEHM | 🔍 observability
  • instanceMethodStepWorkflow - instance methods with "use step" directive | wrun_01KYB5ZVT3YKCNJETE22JRPM53 | 🔍 observability
  • crossContextSerdeWorkflow - classes defined in step code are deserializable in workflow context | wrun_01KYB602D12QSKA4M3MABD40JZ | 🔍 observability
  • stepFunctionAsStartArgWorkflow - step function reference passed as start() argument
  • cancelRun - cancelling a running workflow | wrun_01KYB617ERA4553ZMXYNQW2CC2 | 🔍 observability
  • cancelRun via CLI - cancelling a running workflow | wrun_01KYB60XGA7MJHC97ZRPHXPEFA | 🔍 observability
  • hookWithSleepWorkflow - hook payloads delivered correctly with concurrent sleep | wrun_01KYB60832QC6C1DZ0TT55CNDD | 🔍 observability
  • hookWithSleepFinalStepWorkflow - step only on final payload | wrun_01KYB60B8Z8ER8SHDK59FNKQJ5 | 🔍 observability
  • sleepInLoopWorkflow - sleep inside loop with steps actually delays each iteration | wrun_01KYB60DBG3DQT63AEB9Y1XHE6 | 🔍 observability
  • sleepWithSequentialStepsWorkflow - sequential steps work with concurrent sleep (control) | wrun_01KYB60RYGJPYPK0D6HRVBEW3K | 🔍 observability
  • importMetaUrlWorkflow - import.meta.url is available in step bundles | wrun_01KYB60B7HC12QJYHZVHG89ZEN | 🔍 observability
  • metadataFromHelperWorkflow - getWorkflowMetadata/getStepMetadata work from module-level helper (#1577) | wrun_01KYB611GDSE752X53D4KF78BS | 🔍 observability

fastify (36 failed):

  • 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_01KYB5Z3ZZEC4JZR9XF22EGKXY | 🔍 observability
  • concurrent hook token conflict - two workflows cannot use the same hook token simultaneously | wrun_01KYB5Z7ZMWEBRSG6RS64M4DBC | 🔍 observability
  • hookGetConflictWorkflow - awaiting hook.getConflict() registers hook without payload
  • 'hookGetConflictWithPriorStepWorkflow' - hook.getConflict() does not block step execution | wrun_01KYB5Z9VQVYESNHA77ATN4SGC | 🔍 observability
  • 'hookGetConflictWithParallelStepWorkfl…' - hook.getConflict() does not block step execution | wrun_01KYB5Z8W9Z0N1HX64E9WF8E49 | 🔍 observability
  • hookGetConflictThenStepParallelWorkflow - hook.getConflict() continuation step runs alongside other steps | wrun_01KYB5Z8V9HT55T043PV9325MM | 🔍 observability
  • hookGetConflictWorkflow - hook.getConflict() resolves with the conflicting run when token is already registered | wrun_01KYB5ZASW23HBJ4WG10RC37A5 | 🔍 observability
  • hookClaimOnlyMutexWorkflow - hook works as a pure run mutex without payload data | wrun_01KYB6018JQYZA02S424DTBD2N | 🔍 observability
  • hookAdoptOwnerResultWorkflow - duplicate adopts the owner result via conflict.returnValue | wrun_01KYB60BFE47C892AK86B1SHHQ | 🔍 observability
  • hookSignalOwnerWorkflow - duplicate forwards its payload to the owner via resumeHook | wrun_01KYB5ZGNZHTT7P6A57G05SJTM | 🔍 observability
  • hookSupersedeOwnerWorkflow - duplicate cancels the owner and claims the released token | wrun_01KYB5ZJMBBSTYAZ2WRQA232DW | 🔍 observability
  • resume-or-start route pattern - resumeHook retried after start() reaches the new run | wrun_01KYB60381CDYT3MM95ZEMJ59W | 🔍 observability
  • hookDisposeTestWorkflow - hook token reuse after explicit disposal while workflow still running | wrun_01KYB607576DEERRW27639Z1XW | 🔍 observability
  • stepFunctionPassingWorkflow - step function references can be passed as arguments (without closure vars) | wrun_01KYB6087JZBH9JC0YE9J3FE83 | 🔍 observability
  • stepFunctionWithClosureWorkflow - step function with closure variables passed as argument | wrun_01KYB5ZENEBQAGCN0A7KH4HM9Z | 🔍 observability
  • closureVariableWorkflow - nested step functions with closure variables | wrun_01KYB60E2BCYS1QDJFM65NWZQW | 🔍 observability
  • spawnWorkflowFromStepWorkflow - spawning a child workflow using start() inside a step | wrun_01KYB6091J6SJYBHQMGAT10H02 | 🔍 observability
  • pathsAliasWorkflow - TypeScript path aliases resolve correctly | wrun_01KYB60R0QVN7FT12AZHKM10CB | 🔍 observability
  • Calculator.calculate - static workflow method using static step methods from another class | wrun_01KYB60GVBXQPAEWGERCFM50WC | 🔍 observability
  • AllInOneService.processNumber - static workflow method using sibling static step methods | wrun_01KYB60MSSNZYQPBBMGAFPSMDA | 🔍 observability
  • ChainableService.processWithThis - static step methods using this to reference the class | wrun_01KYB60RVQBB34HKJGBBQF6BQC | 🔍 observability
  • thisSerializationWorkflow - step function invoked with .call() and .apply() | wrun_01KYB60TMW6BVW91S9GRSA5G66 | 🔍 observability
  • customSerializationWorkflow - custom class serialization with WORKFLOW_SERIALIZE/WORKFLOW_DESERIALIZE | wrun_01KYB5ZQFCNXBFCF53HB0WSEHM | 🔍 observability
  • instanceMethodStepWorkflow - instance methods with "use step" directive | wrun_01KYB5ZVT3YKCNJETE22JRPM53 | 🔍 observability
  • crossContextSerdeWorkflow - classes defined in step code are deserializable in workflow context | wrun_01KYB602D12QSKA4M3MABD40JZ | 🔍 observability
  • stepFunctionAsStartArgWorkflow - step function reference passed as start() argument
  • cancelRun - cancelling a running workflow | wrun_01KYB617ERA4553ZMXYNQW2CC2 | 🔍 observability
  • cancelRun via CLI - cancelling a running workflow | wrun_01KYB60XGA7MJHC97ZRPHXPEFA | 🔍 observability
  • hookWithSleepWorkflow - hook payloads delivered correctly with concurrent sleep | wrun_01KYB60832QC6C1DZ0TT55CNDD | 🔍 observability
  • hookWithSleepFinalStepWorkflow - step only on final payload | wrun_01KYB60B8Z8ER8SHDK59FNKQJ5 | 🔍 observability
  • sleepWithSequentialStepsWorkflow - sequential steps work with concurrent sleep (control) | wrun_01KYB60RYGJPYPK0D6HRVBEW3K | 🔍 observability
  • importMetaUrlWorkflow - import.meta.url is available in step bundles | wrun_01KYB60B7HC12QJYHZVHG89ZEN | 🔍 observability
  • metadataFromHelperWorkflow - getWorkflowMetadata/getStepMetadata work from module-level helper (#1577) | wrun_01KYB611GDSE752X53D4KF78BS | 🔍 observability
  • resilient start: addTenWorkflow completes when run_created returns 500 | wrun_01KYB614B1V9A99SMXND9N86EB | 🔍 observability

hono (36 failed):

  • 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_01KYB5Z3ZZEC4JZR9XF22EGKXY | 🔍 observability
  • concurrent hook token conflict - two workflows cannot use the same hook token simultaneously | wrun_01KYB5Z7ZMWEBRSG6RS64M4DBC | 🔍 observability
  • hookGetConflictWorkflow - awaiting hook.getConflict() registers hook without payload
  • 'hookGetConflictWithPriorStepWorkflow' - hook.getConflict() does not block step execution | wrun_01KYB5Z9VQVYESNHA77ATN4SGC | 🔍 observability
  • 'hookGetConflictWithParallelStepWorkfl…' - hook.getConflict() does not block step execution | wrun_01KYB5Z8W9Z0N1HX64E9WF8E49 | 🔍 observability
  • hookGetConflictThenStepParallelWorkflow - hook.getConflict() continuation step runs alongside other steps | wrun_01KYB5Z8V9HT55T043PV9325MM | 🔍 observability
  • hookGetConflictWorkflow - hook.getConflict() resolves with the conflicting run when token is already registered | wrun_01KYB5ZASW23HBJ4WG10RC37A5 | 🔍 observability
  • hookClaimOnlyMutexWorkflow - hook works as a pure run mutex without payload data | wrun_01KYB6018JQYZA02S424DTBD2N | 🔍 observability
  • hookAdoptOwnerResultWorkflow - duplicate adopts the owner result via conflict.returnValue | wrun_01KYB60BFE47C892AK86B1SHHQ | 🔍 observability
  • hookSignalOwnerWorkflow - duplicate forwards its payload to the owner via resumeHook | wrun_01KYB5ZGNZHTT7P6A57G05SJTM | 🔍 observability
  • hookSupersedeOwnerWorkflow - duplicate cancels the owner and claims the released token | wrun_01KYB5ZJMBBSTYAZ2WRQA232DW | 🔍 observability
  • resume-or-start route pattern - resumeHook retried after start() reaches the new run | wrun_01KYB60381CDYT3MM95ZEMJ59W | 🔍 observability
  • hookDisposeTestWorkflow - hook token reuse after explicit disposal while workflow still running | wrun_01KYB607576DEERRW27639Z1XW | 🔍 observability
  • stepFunctionPassingWorkflow - step function references can be passed as arguments (without closure vars) | wrun_01KYB6087JZBH9JC0YE9J3FE83 | 🔍 observability
  • stepFunctionWithClosureWorkflow - step function with closure variables passed as argument | wrun_01KYB5ZENEBQAGCN0A7KH4HM9Z | 🔍 observability
  • closureVariableWorkflow - nested step functions with closure variables | wrun_01KYB60E2BCYS1QDJFM65NWZQW | 🔍 observability
  • spawnWorkflowFromStepWorkflow - spawning a child workflow using start() inside a step | wrun_01KYB6091J6SJYBHQMGAT10H02 | 🔍 observability
  • pathsAliasWorkflow - TypeScript path aliases resolve correctly | wrun_01KYB60R0QVN7FT12AZHKM10CB | 🔍 observability
  • Calculator.calculate - static workflow method using static step methods from another class | wrun_01KYB60GVBXQPAEWGERCFM50WC | 🔍 observability
  • AllInOneService.processNumber - static workflow method using sibling static step methods | wrun_01KYB60MSSNZYQPBBMGAFPSMDA | 🔍 observability
  • ChainableService.processWithThis - static step methods using this to reference the class | wrun_01KYB60RVQBB34HKJGBBQF6BQC | 🔍 observability
  • thisSerializationWorkflow - step function invoked with .call() and .apply() | wrun_01KYB60TMW6BVW91S9GRSA5G66 | 🔍 observability
  • customSerializationWorkflow - custom class serialization with WORKFLOW_SERIALIZE/WORKFLOW_DESERIALIZE | wrun_01KYB5ZQFCNXBFCF53HB0WSEHM | 🔍 observability
  • instanceMethodStepWorkflow - instance methods with "use step" directive | wrun_01KYB5ZVT3YKCNJETE22JRPM53 | 🔍 observability
  • crossContextSerdeWorkflow - classes defined in step code are deserializable in workflow context | wrun_01KYB602D12QSKA4M3MABD40JZ | 🔍 observability
  • stepFunctionAsStartArgWorkflow - step function reference passed as start() argument
  • cancelRun - cancelling a running workflow | wrun_01KYB617ERA4553ZMXYNQW2CC2 | 🔍 observability
  • cancelRun via CLI - cancelling a running workflow | wrun_01KYB60XGA7MJHC97ZRPHXPEFA | 🔍 observability
  • hookWithSleepWorkflow - hook payloads delivered correctly with concurrent sleep | wrun_01KYB60832QC6C1DZ0TT55CNDD | 🔍 observability
  • hookWithSleepFinalStepWorkflow - step only on final payload | wrun_01KYB60B8Z8ER8SHDK59FNKQJ5 | 🔍 observability
  • sleepInLoopWorkflow - sleep inside loop with steps actually delays each iteration | wrun_01KYB60DBG3DQT63AEB9Y1XHE6 | 🔍 observability
  • sleepWithSequentialStepsWorkflow - sequential steps work with concurrent sleep (control) | wrun_01KYB60RYGJPYPK0D6HRVBEW3K | 🔍 observability
  • importMetaUrlWorkflow - import.meta.url is available in step bundles | wrun_01KYB60B7HC12QJYHZVHG89ZEN | 🔍 observability
  • metadataFromHelperWorkflow - getWorkflowMetadata/getStepMetadata work from module-level helper (#1577) | wrun_01KYB611GDSE752X53D4KF78BS | 🔍 observability

nextjs-turbopack (40 failed):

  • 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_01KYB5Z3ZZEC4JZR9XF22EGKXY | 🔍 observability
  • concurrent hook token conflict - two workflows cannot use the same hook token simultaneously | wrun_01KYB5Z7ZMWEBRSG6RS64M4DBC | 🔍 observability
  • hookGetConflictWorkflow - awaiting hook.getConflict() registers hook without payload
  • 'hookGetConflictWithPriorStepWorkflow' - hook.getConflict() does not block step execution | wrun_01KYB5Z9VQVYESNHA77ATN4SGC | 🔍 observability
  • 'hookGetConflictWithParallelStepWorkfl…' - hook.getConflict() does not block step execution | wrun_01KYB5Z8W9Z0N1HX64E9WF8E49 | 🔍 observability
  • hookGetConflictThenStepParallelWorkflow - hook.getConflict() continuation step runs alongside other steps | wrun_01KYB5Z8V9HT55T043PV9325MM | 🔍 observability
  • hookGetConflictWorkflow - hook.getConflict() resolves with the conflicting run when token is already registered | wrun_01KYB5ZASW23HBJ4WG10RC37A5 | 🔍 observability
  • hookClaimOnlyMutexWorkflow - hook works as a pure run mutex without payload data | wrun_01KYB6018JQYZA02S424DTBD2N | 🔍 observability
  • hookAdoptOwnerResultWorkflow - duplicate adopts the owner result via conflict.returnValue | wrun_01KYB60BFE47C892AK86B1SHHQ | 🔍 observability
  • hookSignalOwnerWorkflow - duplicate forwards its payload to the owner via resumeHook | wrun_01KYB5ZGNZHTT7P6A57G05SJTM | 🔍 observability
  • hookSupersedeOwnerWorkflow - duplicate cancels the owner and claims the released token | wrun_01KYB5ZJMBBSTYAZ2WRQA232DW | 🔍 observability
  • resume-or-start route pattern - resumeHook retried after start() reaches the new run | wrun_01KYB60381CDYT3MM95ZEMJ59W | 🔍 observability
  • hookDisposeTestWorkflow - hook token reuse after explicit disposal while workflow still running | wrun_01KYB607576DEERRW27639Z1XW | 🔍 observability
  • stepFunctionPassingWorkflow - step function references can be passed as arguments (without closure vars) | wrun_01KYB6087JZBH9JC0YE9J3FE83 | 🔍 observability
  • stepFunctionWithClosureWorkflow - step function with closure variables passed as argument | wrun_01KYB5ZENEBQAGCN0A7KH4HM9Z | 🔍 observability
  • closureVariableWorkflow - nested step functions with closure variables | wrun_01KYB60E2BCYS1QDJFM65NWZQW | 🔍 observability
  • spawnWorkflowFromStepWorkflow - spawning a child workflow using start() inside a step | wrun_01KYB6091J6SJYBHQMGAT10H02 | 🔍 observability
  • pathsAliasWorkflow - TypeScript path aliases resolve correctly | wrun_01KYB60R0QVN7FT12AZHKM10CB | 🔍 observability
  • Calculator.calculate - static workflow method using static step methods from another class | wrun_01KYB60GVBXQPAEWGERCFM50WC | 🔍 observability
  • AllInOneService.processNumber - static workflow method using sibling static step methods | wrun_01KYB60MSSNZYQPBBMGAFPSMDA | 🔍 observability
  • ChainableService.processWithThis - static step methods using this to reference the class | wrun_01KYB60RVQBB34HKJGBBQF6BQC | 🔍 observability
  • thisSerializationWorkflow - step function invoked with .call() and .apply() | wrun_01KYB60TMW6BVW91S9GRSA5G66 | 🔍 observability
  • customSerializationWorkflow - custom class serialization with WORKFLOW_SERIALIZE/WORKFLOW_DESERIALIZE | wrun_01KYB5ZQFCNXBFCF53HB0WSEHM | 🔍 observability
  • instanceMethodStepWorkflow - instance methods with "use step" directive | wrun_01KYB5ZVT3YKCNJETE22JRPM53 | 🔍 observability
  • crossContextSerdeWorkflow - classes defined in step code are deserializable in workflow context | wrun_01KYB602D12QSKA4M3MABD40JZ | 🔍 observability
  • stepFunctionAsStartArgWorkflow - step function reference passed as start() argument
  • cancelRun - cancelling a running workflow | wrun_01KYB617ERA4553ZMXYNQW2CC2 | 🔍 observability
  • cancelRun via CLI - cancelling a running workflow | wrun_01KYB60XGA7MJHC97ZRPHXPEFA | 🔍 observability
  • pages router addTenWorkflow via pages router
  • pages router promiseAllWorkflow via pages router
  • hookWithSleepWorkflow - hook payloads delivered correctly with concurrent sleep | wrun_01KYB60832QC6C1DZ0TT55CNDD | 🔍 observability
  • hookWithSleepFinalStepWorkflow - step only on final payload | wrun_01KYB60B8Z8ER8SHDK59FNKQJ5 | 🔍 observability
  • sleepInLoopWorkflow - sleep inside loop with steps actually delays each iteration | wrun_01KYB60DBG3DQT63AEB9Y1XHE6 | 🔍 observability
  • sleepWithSequentialStepsWorkflow - sequential steps work with concurrent sleep (control) | wrun_01KYB60RYGJPYPK0D6HRVBEW3K | 🔍 observability
  • importMetaUrlWorkflow - import.meta.url is available in step bundles | wrun_01KYB60B7HC12QJYHZVHG89ZEN | 🔍 observability
  • metadataFromHelperWorkflow - getWorkflowMetadata/getStepMetadata work from module-level helper (#1577) | wrun_01KYB611GDSE752X53D4KF78BS | 🔍 observability
  • resilient start: addTenWorkflow completes when run_created returns 500 | wrun_01KYB614B1V9A99SMXND9N86EB | 🔍 observability

nextjs-webpack (40 failed):

  • 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_01KYB5Z3ZZEC4JZR9XF22EGKXY | 🔍 observability
  • concurrent hook token conflict - two workflows cannot use the same hook token simultaneously | wrun_01KYB5Z7ZMWEBRSG6RS64M4DBC | 🔍 observability
  • hookGetConflictWorkflow - awaiting hook.getConflict() registers hook without payload
  • 'hookGetConflictWithPriorStepWorkflow' - hook.getConflict() does not block step execution | wrun_01KYB5Z9VQVYESNHA77ATN4SGC | 🔍 observability
  • 'hookGetConflictWithParallelStepWorkfl…' - hook.getConflict() does not block step execution | wrun_01KYB5Z8W9Z0N1HX64E9WF8E49 | 🔍 observability
  • hookGetConflictThenStepParallelWorkflow - hook.getConflict() continuation step runs alongside other steps | wrun_01KYB5Z8V9HT55T043PV9325MM | 🔍 observability
  • hookGetConflictWorkflow - hook.getConflict() resolves with the conflicting run when token is already registered | wrun_01KYB5ZASW23HBJ4WG10RC37A5 | 🔍 observability
  • hookClaimOnlyMutexWorkflow - hook works as a pure run mutex without payload data | wrun_01KYB6018JQYZA02S424DTBD2N | 🔍 observability
  • hookAdoptOwnerResultWorkflow - duplicate adopts the owner result via conflict.returnValue | wrun_01KYB60BFE47C892AK86B1SHHQ | 🔍 observability
  • hookSignalOwnerWorkflow - duplicate forwards its payload to the owner via resumeHook | wrun_01KYB5ZGNZHTT7P6A57G05SJTM | 🔍 observability
  • hookSupersedeOwnerWorkflow - duplicate cancels the owner and claims the released token | wrun_01KYB5ZJMBBSTYAZ2WRQA232DW | 🔍 observability
  • resume-or-start route pattern - resumeHook retried after start() reaches the new run | wrun_01KYB60381CDYT3MM95ZEMJ59W | 🔍 observability
  • hookDisposeTestWorkflow - hook token reuse after explicit disposal while workflow still running | wrun_01KYB607576DEERRW27639Z1XW | 🔍 observability
  • stepFunctionPassingWorkflow - step function references can be passed as arguments (without closure vars) | wrun_01KYB6087JZBH9JC0YE9J3FE83 | 🔍 observability
  • stepFunctionWithClosureWorkflow - step function with closure variables passed as argument | wrun_01KYB5ZENEBQAGCN0A7KH4HM9Z | 🔍 observability
  • closureVariableWorkflow - nested step functions with closure variables | wrun_01KYB60E2BCYS1QDJFM65NWZQW | 🔍 observability
  • spawnWorkflowFromStepWorkflow - spawning a child workflow using start() inside a step | wrun_01KYB6091J6SJYBHQMGAT10H02 | 🔍 observability
  • pathsAliasWorkflow - TypeScript path aliases resolve correctly | wrun_01KYB60R0QVN7FT12AZHKM10CB | 🔍 observability
  • Calculator.calculate - static workflow method using static step methods from another class | wrun_01KYB60GVBXQPAEWGERCFM50WC | 🔍 observability
  • AllInOneService.processNumber - static workflow method using sibling static step methods | wrun_01KYB60MSSNZYQPBBMGAFPSMDA | 🔍 observability
  • ChainableService.processWithThis - static step methods using this to reference the class | wrun_01KYB60RVQBB34HKJGBBQF6BQC | 🔍 observability
  • thisSerializationWorkflow - step function invoked with .call() and .apply() | wrun_01KYB60TMW6BVW91S9GRSA5G66 | 🔍 observability
  • customSerializationWorkflow - custom class serialization with WORKFLOW_SERIALIZE/WORKFLOW_DESERIALIZE | wrun_01KYB5ZQFCNXBFCF53HB0WSEHM | 🔍 observability
  • instanceMethodStepWorkflow - instance methods with "use step" directive | wrun_01KYB5ZVT3YKCNJETE22JRPM53 | 🔍 observability
  • crossContextSerdeWorkflow - classes defined in step code are deserializable in workflow context | wrun_01KYB602D12QSKA4M3MABD40JZ | 🔍 observability
  • stepFunctionAsStartArgWorkflow - step function reference passed as start() argument
  • cancelRun - cancelling a running workflow | wrun_01KYB617ERA4553ZMXYNQW2CC2 | 🔍 observability
  • cancelRun via CLI - cancelling a running workflow | wrun_01KYB60XGA7MJHC97ZRPHXPEFA | 🔍 observability
  • pages router addTenWorkflow via pages router
  • pages router sleepingWorkflow via pages router
  • hookWithSleepWorkflow - hook payloads delivered correctly with concurrent sleep | wrun_01KYB60832QC6C1DZ0TT55CNDD | 🔍 observability
  • hookWithSleepFinalStepWorkflow - step only on final payload | wrun_01KYB60B8Z8ER8SHDK59FNKQJ5 | 🔍 observability
  • sleepInLoopWorkflow - sleep inside loop with steps actually delays each iteration | wrun_01KYB60DBG3DQT63AEB9Y1XHE6 | 🔍 observability
  • sleepWithSequentialStepsWorkflow - sequential steps work with concurrent sleep (control) | wrun_01KYB60RYGJPYPK0D6HRVBEW3K | 🔍 observability
  • importMetaUrlWorkflow - import.meta.url is available in step bundles | wrun_01KYB60B7HC12QJYHZVHG89ZEN | 🔍 observability
  • metadataFromHelperWorkflow - getWorkflowMetadata/getStepMetadata work from module-level helper (#1577) | wrun_01KYB611GDSE752X53D4KF78BS | 🔍 observability
  • resilient start: addTenWorkflow completes when run_created returns 500 | wrun_01KYB614B1V9A99SMXND9N86EB | 🔍 observability

nitro (36 failed):

  • 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_01KYB5Z3ZZEC4JZR9XF22EGKXY | 🔍 observability
  • concurrent hook token conflict - two workflows cannot use the same hook token simultaneously | wrun_01KYB5Z7ZMWEBRSG6RS64M4DBC | 🔍 observability
  • hookGetConflictWorkflow - awaiting hook.getConflict() registers hook without payload
  • 'hookGetConflictWithPriorStepWorkflow' - hook.getConflict() does not block step execution | wrun_01KYB5Z9VQVYESNHA77ATN4SGC | 🔍 observability
  • 'hookGetConflictWithParallelStepWorkfl…' - hook.getConflict() does not block step execution | wrun_01KYB5Z8W9Z0N1HX64E9WF8E49 | 🔍 observability
  • hookGetConflictThenStepParallelWorkflow - hook.getConflict() continuation step runs alongside other steps | wrun_01KYB5Z8V9HT55T043PV9325MM | 🔍 observability
  • hookGetConflictWorkflow - hook.getConflict() resolves with the conflicting run when token is already registered | wrun_01KYB5ZASW23HBJ4WG10RC37A5 | 🔍 observability
  • hookClaimOnlyMutexWorkflow - hook works as a pure run mutex without payload data | wrun_01KYB6018JQYZA02S424DTBD2N | 🔍 observability
  • hookAdoptOwnerResultWorkflow - duplicate adopts the owner result via conflict.returnValue | wrun_01KYB60BFE47C892AK86B1SHHQ | 🔍 observability
  • hookSignalOwnerWorkflow - duplicate forwards its payload to the owner via resumeHook | wrun_01KYB5ZGNZHTT7P6A57G05SJTM | 🔍 observability
  • hookSupersedeOwnerWorkflow - duplicate cancels the owner and claims the released token | wrun_01KYB5ZJMBBSTYAZ2WRQA232DW | 🔍 observability
  • hookDisposeTestWorkflow - hook token reuse after explicit disposal while workflow still running | wrun_01KYB607576DEERRW27639Z1XW | 🔍 observability
  • stepFunctionPassingWorkflow - step function references can be passed as arguments (without closure vars) | wrun_01KYB6087JZBH9JC0YE9J3FE83 | 🔍 observability
  • stepFunctionWithClosureWorkflow - step function with closure variables passed as argument | wrun_01KYB5ZENEBQAGCN0A7KH4HM9Z | 🔍 observability
  • closureVariableWorkflow - nested step functions with closure variables | wrun_01KYB60E2BCYS1QDJFM65NWZQW | 🔍 observability
  • spawnWorkflowFromStepWorkflow - spawning a child workflow using start() inside a step | wrun_01KYB6091J6SJYBHQMGAT10H02 | 🔍 observability
  • pathsAliasWorkflow - TypeScript path aliases resolve correctly | wrun_01KYB60R0QVN7FT12AZHKM10CB | 🔍 observability
  • Calculator.calculate - static workflow method using static step methods from another class | wrun_01KYB60GVBXQPAEWGERCFM50WC | 🔍 observability
  • AllInOneService.processNumber - static workflow method using sibling static step methods | wrun_01KYB60MSSNZYQPBBMGAFPSMDA | 🔍 observability
  • ChainableService.processWithThis - static step methods using this to reference the class | wrun_01KYB60RVQBB34HKJGBBQF6BQC | 🔍 observability
  • thisSerializationWorkflow - step function invoked with .call() and .apply() | wrun_01KYB60TMW6BVW91S9GRSA5G66 | 🔍 observability
  • customSerializationWorkflow - custom class serialization with WORKFLOW_SERIALIZE/WORKFLOW_DESERIALIZE | wrun_01KYB5ZQFCNXBFCF53HB0WSEHM | 🔍 observability
  • instanceMethodStepWorkflow - instance methods with "use step" directive | wrun_01KYB5ZVT3YKCNJETE22JRPM53 | 🔍 observability
  • crossContextSerdeWorkflow - classes defined in step code are deserializable in workflow context | wrun_01KYB602D12QSKA4M3MABD40JZ | 🔍 observability
  • stepFunctionAsStartArgWorkflow - step function reference passed as start() argument
  • cancelRun - cancelling a running workflow | wrun_01KYB617ERA4553ZMXYNQW2CC2 | 🔍 observability
  • cancelRun via CLI - cancelling a running workflow | wrun_01KYB60XGA7MJHC97ZRPHXPEFA | 🔍 observability
  • hookWithSleepWorkflow - hook payloads delivered correctly with concurrent sleep | wrun_01KYB60832QC6C1DZ0TT55CNDD | 🔍 observability
  • hookWithSleepFinalStepWorkflow - step only on final payload | wrun_01KYB60B8Z8ER8SHDK59FNKQJ5 | 🔍 observability
  • sleepInLoopWorkflow - sleep inside loop with steps actually delays each iteration | wrun_01KYB60DBG3DQT63AEB9Y1XHE6 | 🔍 observability
  • sleepWithSequentialStepsWorkflow - sequential steps work with concurrent sleep (control) | wrun_01KYB60RYGJPYPK0D6HRVBEW3K | 🔍 observability
  • importMetaUrlWorkflow - import.meta.url is available in step bundles | wrun_01KYB60B7HC12QJYHZVHG89ZEN | 🔍 observability
  • metadataFromHelperWorkflow - getWorkflowMetadata/getStepMetadata work from module-level helper (#1577) | wrun_01KYB611GDSE752X53D4KF78BS | 🔍 observability
  • resilient start: addTenWorkflow completes when run_created returns 500 | wrun_01KYB614B1V9A99SMXND9N86EB | 🔍 observability

nuxt (33 failed):

  • hookCleanupTestWorkflow - hook token reuse after workflow completion | wrun_01KYB5Z3ZZEC4JZR9XF22EGKXY | 🔍 observability
  • concurrent hook token conflict - two workflows cannot use the same hook token simultaneously | wrun_01KYB5Z7ZMWEBRSG6RS64M4DBC | 🔍 observability
  • hookGetConflictWorkflow - awaiting hook.getConflict() registers hook without payload
  • 'hookGetConflictWithPriorStepWorkflow' - hook.getConflict() does not block step execution | wrun_01KYB5Z9VQVYESNHA77ATN4SGC | 🔍 observability
  • 'hookGetConflictWithParallelStepWorkfl…' - hook.getConflict() does not block step execution | wrun_01KYB5Z8W9Z0N1HX64E9WF8E49 | 🔍 observability
  • hookGetConflictThenStepParallelWorkflow - hook.getConflict() continuation step runs alongside other steps | wrun_01KYB5Z8V9HT55T043PV9325MM | 🔍 observability
  • hookGetConflictWorkflow - hook.getConflict() resolves with the conflicting run when token is already registered | wrun_01KYB5ZASW23HBJ4WG10RC37A5 | 🔍 observability
  • hookClaimOnlyMutexWorkflow - hook works as a pure run mutex without payload data | wrun_01KYB6018JQYZA02S424DTBD2N | 🔍 observability
  • hookAdoptOwnerResultWorkflow - duplicate adopts the owner result via conflict.returnValue | wrun_01KYB60BFE47C892AK86B1SHHQ | 🔍 observability
  • hookSignalOwnerWorkflow - duplicate forwards its payload to the owner via resumeHook | wrun_01KYB5ZGNZHTT7P6A57G05SJTM | 🔍 observability
  • hookSupersedeOwnerWorkflow - duplicate cancels the owner and claims the released token | wrun_01KYB5ZJMBBSTYAZ2WRQA232DW | 🔍 observability
  • resume-or-start route pattern - resumeHook retried after start() reaches the new run | wrun_01KYB60381CDYT3MM95ZEMJ59W | 🔍 observability
  • hookDisposeTestWorkflow - hook token reuse after explicit disposal while workflow still running | wrun_01KYB607576DEERRW27639Z1XW | 🔍 observability
  • stepFunctionPassingWorkflow - step function references can be passed as arguments (without closure vars) | wrun_01KYB6087JZBH9JC0YE9J3FE83 | 🔍 observability
  • stepFunctionWithClosureWorkflow - step function with closure variables passed as argument | wrun_01KYB5ZENEBQAGCN0A7KH4HM9Z | 🔍 observability
  • closureVariableWorkflow - nested step functions with closure variables | wrun_01KYB60E2BCYS1QDJFM65NWZQW | 🔍 observability
  • pathsAliasWorkflow - TypeScript path aliases resolve correctly | wrun_01KYB60R0QVN7FT12AZHKM10CB | 🔍 observability
  • Calculator.calculate - static workflow method using static step methods from another class | wrun_01KYB60GVBXQPAEWGERCFM50WC | 🔍 observability
  • AllInOneService.processNumber - static workflow method using sibling static step methods | wrun_01KYB60MSSNZYQPBBMGAFPSMDA | 🔍 observability
  • ChainableService.processWithThis - static step methods using this to reference the class | wrun_01KYB60RVQBB34HKJGBBQF6BQC | 🔍 observability
  • customSerializationWorkflow - custom class serialization with WORKFLOW_SERIALIZE/WORKFLOW_DESERIALIZE | wrun_01KYB5ZQFCNXBFCF53HB0WSEHM | 🔍 observability
  • instanceMethodStepWorkflow - instance methods with "use step" directive | wrun_01KYB5ZVT3YKCNJETE22JRPM53 | 🔍 observability
  • crossContextSerdeWorkflow - classes defined in step code are deserializable in workflow context | wrun_01KYB602D12QSKA4M3MABD40JZ | 🔍 observability
  • stepFunctionAsStartArgWorkflow - step function reference passed as start() argument
  • cancelRun - cancelling a running workflow | wrun_01KYB617ERA4553ZMXYNQW2CC2 | 🔍 observability
  • cancelRun via CLI - cancelling a running workflow | wrun_01KYB60XGA7MJHC97ZRPHXPEFA | 🔍 observability
  • hookWithSleepWorkflow - hook payloads delivered correctly with concurrent sleep | wrun_01KYB60832QC6C1DZ0TT55CNDD | 🔍 observability
  • hookWithSleepFinalStepWorkflow - step only on final payload | wrun_01KYB60B8Z8ER8SHDK59FNKQJ5 | 🔍 observability
  • sleepInLoopWorkflow - sleep inside loop with steps actually delays each iteration | wrun_01KYB60DBG3DQT63AEB9Y1XHE6 | 🔍 observability
  • sleepWithSequentialStepsWorkflow - sequential steps work with concurrent sleep (control) | wrun_01KYB60RYGJPYPK0D6HRVBEW3K | 🔍 observability
  • importMetaUrlWorkflow - import.meta.url is available in step bundles | wrun_01KYB60B7HC12QJYHZVHG89ZEN | 🔍 observability
  • metadataFromHelperWorkflow - getWorkflowMetadata/getStepMetadata work from module-level helper (#1577) | wrun_01KYB611GDSE752X53D4KF78BS | 🔍 observability
  • resilient start: addTenWorkflow completes when run_created returns 500 | wrun_01KYB614B1V9A99SMXND9N86EB | 🔍 observability

sveltekit (36 failed):

  • 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_01KYB5Z3ZZEC4JZR9XF22EGKXY | 🔍 observability
  • concurrent hook token conflict - two workflows cannot use the same hook token simultaneously | wrun_01KYB5Z7ZMWEBRSG6RS64M4DBC | 🔍 observability
  • hookGetConflictWorkflow - awaiting hook.getConflict() registers hook without payload
  • 'hookGetConflictWithPriorStepWorkflow' - hook.getConflict() does not block step execution | wrun_01KYB5Z9VQVYESNHA77ATN4SGC | 🔍 observability
  • 'hookGetConflictWithParallelStepWorkfl…' - hook.getConflict() does not block step execution | wrun_01KYB5Z8W9Z0N1HX64E9WF8E49 | 🔍 observability
  • hookGetConflictThenStepParallelWorkflow - hook.getConflict() continuation step runs alongside other steps | wrun_01KYB5Z8V9HT55T043PV9325MM | 🔍 observability
  • hookGetConflictWorkflow - hook.getConflict() resolves with the conflicting run when token is already registered | wrun_01KYB5ZASW23HBJ4WG10RC37A5 | 🔍 observability
  • hookClaimOnlyMutexWorkflow - hook works as a pure run mutex without payload data | wrun_01KYB6018JQYZA02S424DTBD2N | 🔍 observability
  • hookAdoptOwnerResultWorkflow - duplicate adopts the owner result via conflict.returnValue | wrun_01KYB60BFE47C892AK86B1SHHQ | 🔍 observability
  • hookSignalOwnerWorkflow - duplicate forwards its payload to the owner via resumeHook | wrun_01KYB5ZGNZHTT7P6A57G05SJTM | 🔍 observability
  • hookSupersedeOwnerWorkflow - duplicate cancels the owner and claims the released token | wrun_01KYB5ZJMBBSTYAZ2WRQA232DW | 🔍 observability
  • resume-or-start route pattern - resumeHook retried after start() reaches the new run | wrun_01KYB60381CDYT3MM95ZEMJ59W | 🔍 observability
  • hookDisposeTestWorkflow - hook token reuse after explicit disposal while workflow still running | wrun_01KYB607576DEERRW27639Z1XW | 🔍 observability
  • stepFunctionPassingWorkflow - step function references can be passed as arguments (without closure vars) | wrun_01KYB6087JZBH9JC0YE9J3FE83 | 🔍 observability
  • stepFunctionWithClosureWorkflow - step function with closure variables passed as argument | wrun_01KYB5ZENEBQAGCN0A7KH4HM9Z | 🔍 observability
  • closureVariableWorkflow - nested step functions with closure variables | wrun_01KYB60E2BCYS1QDJFM65NWZQW | 🔍 observability
  • spawnWorkflowFromStepWorkflow - spawning a child workflow using start() inside a step | wrun_01KYB6091J6SJYBHQMGAT10H02 | 🔍 observability
  • pathsAliasWorkflow - TypeScript path aliases resolve correctly | wrun_01KYB60R0QVN7FT12AZHKM10CB | 🔍 observability
  • Calculator.calculate - static workflow method using static step methods from another class | wrun_01KYB60GVBXQPAEWGERCFM50WC | 🔍 observability
  • AllInOneService.processNumber - static workflow method using sibling static step methods | wrun_01KYB60MSSNZYQPBBMGAFPSMDA | 🔍 observability
  • ChainableService.processWithThis - static step methods using this to reference the class | wrun_01KYB60RVQBB34HKJGBBQF6BQC | 🔍 observability
  • thisSerializationWorkflow - step function invoked with .call() and .apply() | wrun_01KYB60TMW6BVW91S9GRSA5G66 | 🔍 observability
  • customSerializationWorkflow - custom class serialization with WORKFLOW_SERIALIZE/WORKFLOW_DESERIALIZE | wrun_01KYB5ZQFCNXBFCF53HB0WSEHM | 🔍 observability
  • instanceMethodStepWorkflow - instance methods with "use step" directive | wrun_01KYB5ZVT3YKCNJETE22JRPM53 | 🔍 observability
  • crossContextSerdeWorkflow - classes defined in step code are deserializable in workflow context | wrun_01KYB602D12QSKA4M3MABD40JZ | 🔍 observability
  • stepFunctionAsStartArgWorkflow - step function reference passed as start() argument
  • cancelRun - cancelling a running workflow | wrun_01KYB617ERA4553ZMXYNQW2CC2 | 🔍 observability
  • cancelRun via CLI - cancelling a running workflow | wrun_01KYB60XGA7MJHC97ZRPHXPEFA | 🔍 observability
  • hookWithSleepWorkflow - hook payloads delivered correctly with concurrent sleep | wrun_01KYB60832QC6C1DZ0TT55CNDD | 🔍 observability
  • hookWithSleepFinalStepWorkflow - step only on final payload | wrun_01KYB60B8Z8ER8SHDK59FNKQJ5 | 🔍 observability
  • sleepInLoopWorkflow - sleep inside loop with steps actually delays each iteration | wrun_01KYB60DBG3DQT63AEB9Y1XHE6 | 🔍 observability
  • sleepWithSequentialStepsWorkflow - sequential steps work with concurrent sleep (control) | wrun_01KYB60RYGJPYPK0D6HRVBEW3K | 🔍 observability
  • metadataFromHelperWorkflow - getWorkflowMetadata/getStepMetadata work from module-level helper (#1577) | wrun_01KYB611GDSE752X53D4KF78BS | 🔍 observability
  • resilient start: addTenWorkflow completes when run_created returns 500 | wrun_01KYB614B1V9A99SMXND9N86EB | 🔍 observability

vite (37 failed):

  • 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_01KYB5Z3ZZEC4JZR9XF22EGKXY | 🔍 observability
  • concurrent hook token conflict - two workflows cannot use the same hook token simultaneously | wrun_01KYB5Z7ZMWEBRSG6RS64M4DBC | 🔍 observability
  • hookGetConflictWorkflow - awaiting hook.getConflict() registers hook without payload
  • 'hookGetConflictWithPriorStepWorkflow' - hook.getConflict() does not block step execution | wrun_01KYB5Z9VQVYESNHA77ATN4SGC | 🔍 observability
  • 'hookGetConflictWithParallelStepWorkfl…' - hook.getConflict() does not block step execution | wrun_01KYB5Z8W9Z0N1HX64E9WF8E49 | 🔍 observability
  • hookGetConflictThenStepParallelWorkflow - hook.getConflict() continuation step runs alongside other steps | wrun_01KYB5Z8V9HT55T043PV9325MM | 🔍 observability
  • hookGetConflictWorkflow - hook.getConflict() resolves with the conflicting run when token is already registered | wrun_01KYB5ZASW23HBJ4WG10RC37A5 | 🔍 observability
  • hookClaimOnlyMutexWorkflow - hook works as a pure run mutex without payload data | wrun_01KYB6018JQYZA02S424DTBD2N | 🔍 observability
  • hookAdoptOwnerResultWorkflow - duplicate adopts the owner result via conflict.returnValue | wrun_01KYB60BFE47C892AK86B1SHHQ | 🔍 observability
  • hookSignalOwnerWorkflow - duplicate forwards its payload to the owner via resumeHook | wrun_01KYB5ZGNZHTT7P6A57G05SJTM | 🔍 observability
  • hookSupersedeOwnerWorkflow - duplicate cancels the owner and claims the released token | wrun_01KYB5ZJMBBSTYAZ2WRQA232DW | 🔍 observability
  • resume-or-start route pattern - resumeHook retried after start() reaches the new run | wrun_01KYB60381CDYT3MM95ZEMJ59W | 🔍 observability
  • hookDisposeTestWorkflow - hook token reuse after explicit disposal while workflow still running | wrun_01KYB607576DEERRW27639Z1XW | 🔍 observability
  • stepFunctionPassingWorkflow - step function references can be passed as arguments (without closure vars) | wrun_01KYB6087JZBH9JC0YE9J3FE83 | 🔍 observability
  • stepFunctionWithClosureWorkflow - step function with closure variables passed as argument | wrun_01KYB5ZENEBQAGCN0A7KH4HM9Z | 🔍 observability
  • closureVariableWorkflow - nested step functions with closure variables | wrun_01KYB60E2BCYS1QDJFM65NWZQW | 🔍 observability
  • spawnWorkflowFromStepWorkflow - spawning a child workflow using start() inside a step | wrun_01KYB6091J6SJYBHQMGAT10H02 | 🔍 observability
  • pathsAliasWorkflow - TypeScript path aliases resolve correctly | wrun_01KYB60R0QVN7FT12AZHKM10CB | 🔍 observability
  • Calculator.calculate - static workflow method using static step methods from another class | wrun_01KYB60GVBXQPAEWGERCFM50WC | 🔍 observability
  • AllInOneService.processNumber - static workflow method using sibling static step methods | wrun_01KYB60MSSNZYQPBBMGAFPSMDA | 🔍 observability
  • ChainableService.processWithThis - static step methods using this to reference the class | wrun_01KYB60RVQBB34HKJGBBQF6BQC | 🔍 observability
  • thisSerializationWorkflow - step function invoked with .call() and .apply() | wrun_01KYB60TMW6BVW91S9GRSA5G66 | 🔍 observability
  • customSerializationWorkflow - custom class serialization with WORKFLOW_SERIALIZE/WORKFLOW_DESERIALIZE | wrun_01KYB5ZQFCNXBFCF53HB0WSEHM | 🔍 observability
  • instanceMethodStepWorkflow - instance methods with "use step" directive | wrun_01KYB5ZVT3YKCNJETE22JRPM53 | 🔍 observability
  • crossContextSerdeWorkflow - classes defined in step code are deserializable in workflow context | wrun_01KYB602D12QSKA4M3MABD40JZ | 🔍 observability
  • stepFunctionAsStartArgWorkflow - step function reference passed as start() argument
  • cancelRun - cancelling a running workflow | wrun_01KYB617ERA4553ZMXYNQW2CC2 | 🔍 observability
  • cancelRun via CLI - cancelling a running workflow | wrun_01KYB60XGA7MJHC97ZRPHXPEFA | 🔍 observability
  • hookWithSleepWorkflow - hook payloads delivered correctly with concurrent sleep | wrun_01KYB60832QC6C1DZ0TT55CNDD | 🔍 observability
  • hookWithSleepFinalStepWorkflow - step only on final payload | wrun_01KYB60B8Z8ER8SHDK59FNKQJ5 | 🔍 observability
  • sleepInLoopWorkflow - sleep inside loop with steps actually delays each iteration | wrun_01KYB60DBG3DQT63AEB9Y1XHE6 | 🔍 observability
  • sleepWithSequentialStepsWorkflow - sequential steps work with concurrent sleep (control) | wrun_01KYB60RYGJPYPK0D6HRVBEW3K | 🔍 observability
  • importMetaUrlWorkflow - import.meta.url is available in step bundles | wrun_01KYB60B7HC12QJYHZVHG89ZEN | 🔍 observability
  • metadataFromHelperWorkflow - getWorkflowMetadata/getStepMetadata work from module-level helper (#1577) | wrun_01KYB611GDSE752X53D4KF78BS | 🔍 observability
  • resilient start: addTenWorkflow completes when run_created returns 500 | wrun_01KYB614B1V9A99SMXND9N86EB | 🔍 observability
🌍 Community Worlds (102 failed)

redis (19 failed):

  • hookWorkflow | wrun_01KYB5P036XRS1TGPWF07QEH2S
  • hookWorkflow is not resumable via public webhook endpoint | wrun_01KYB5P9R40DJ0V4CFQH4TZG2E
  • parallelStepsThenWebhookWorkflow - no hook_conflict from same-tick replay race | wrun_01KYB5PMG3MCR4K0VAWB2Y9575
  • sleepingWorkflow | wrun_01KYB5QPX7MYN55W4XGRV0ND8S
  • 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_01KYB5Z7ZMWEBRSG6RS64M4DBC
  • hookGetConflictWorkflow - awaiting hook.getConflict() registers hook without payload
  • hookGetConflictThenStepParallelWorkflow - hook.getConflict() continuation step runs alongside other steps | wrun_01KYB5Z8V9HT55T043PV9325MM
  • hookGetConflictWorkflow - hook.getConflict() resolves with the conflicting run when token is already registered | wrun_01KYB5ZASW23HBJ4WG10RC37A5
  • hookClaimOnlyMutexWorkflow - hook works as a pure run mutex without payload data | wrun_01KYB6018JQYZA02S424DTBD2N
  • hookAdoptOwnerResultWorkflow - duplicate adopts the owner result via conflict.returnValue | wrun_01KYB60BFE47C892AK86B1SHHQ
  • hookSignalOwnerWorkflow - duplicate forwards its payload to the owner via resumeHook | wrun_01KYB5ZGNZHTT7P6A57G05SJTM
  • hookSupersedeOwnerWorkflow - duplicate cancels the owner and claims the released token | wrun_01KYB5ZJMBBSTYAZ2WRQA232DW
  • resume-or-start route pattern - resumeHook retried after start() reaches the new run | wrun_01KYB60381CDYT3MM95ZEMJ59W
  • pages router sleepingWorkflow via pages router
  • resilient start: addTenWorkflow completes when run_created returns 500 | wrun_01KYB614B1V9A99SMXND9N86EB

turso (83 failed):

  • addTenWorkflow | wrun_01KYB5N2BRVFC953MXQWWV0FXS
  • addTenWorkflow | wrun_01KYB5N2BRVFC953MXQWWV0FXS
  • deploymentId: 'latest' is a no-op in non-Vercel worlds
  • wellKnownAgentWorkflow (.well-known/agent) | wrun_01KYB5NC2S6EGVJSGT3QGYKC4Z
  • should work with react rendering in step
  • promiseAllWorkflow | wrun_01KYB5NA55QVP49E7TDFZH2S2T
  • promiseRaceWorkflow | wrun_01KYB5NEWAAEVJQ06T5SVXKY2V
  • promiseAnyWorkflow | wrun_01KYB5NHBF3YE6GSSVJ29Q0RWW
  • importedStepOnlyWorkflow | wrun_01KYB5NSSH872B9QT1F19M8PPM
  • readableStreamWorkflow | wrun_01KYB5NKNTJJ4N9EN4J58F4F3P
  • hookWorkflow | wrun_01KYB5P036XRS1TGPWF07QEH2S
  • hookWorkflow is not resumable via public webhook endpoint | wrun_01KYB5P9R40DJ0V4CFQH4TZG2E
  • webhookWorkflow | wrun_01KYB5PEYC4S5HEQJDER41PRP7
  • parallelStepsThenWebhookWorkflow - no hook_conflict from same-tick replay race | wrun_01KYB5PMG3MCR4K0VAWB2Y9575
  • sleepingWorkflow | wrun_01KYB5QPX7MYN55W4XGRV0ND8S
  • parallelSleepWorkflow | wrun_01KYB5R6SBQ9XH0GFBPGZ9QMTP
  • sleepWinsRaceWorkflow | wrun_01KYB5RAK5TEE4J7PXV0PN3CMB
  • stepWinsRaceWorkflow | wrun_01KYB5RE4M84QVF9PYY0JPYDCG
  • nullByteWorkflow | wrun_01KYB5RJF4436PTPX5WKY9YM41
  • workflowAndStepMetadataWorkflow | wrun_01KYB5RN949ZVRM7ARNVAVGCSV
  • 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_01KYB5V48XF5C3KFCHK9RP2HYH
  • writableForwardedFromWorkflowWorkflow | wrun_01KYB5VHVRQH1N18HTCBPXPFNW
  • writableForwardedFromStepWorkflow | wrun_01KYB5VP2PHK2ARXR484BQGQNV
  • fetchWorkflow | wrun_01KYB5VSW2HY32J3FP6ZDKXNCZ
  • promiseRaceStressTestWorkflow | wrun_01KYB5VXMQVTTC17WK7QB8812P
  • 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_01KYB5Z3ZZEC4JZR9XF22EGKXY
  • concurrent hook token conflict - two workflows cannot use the same hook token simultaneously | wrun_01KYB5Z7ZMWEBRSG6RS64M4DBC
  • hookGetConflictWorkflow - awaiting hook.getConflict() registers hook without payload
  • 'hookGetConflictWithPriorStepWorkflow' - hook.getConflict() does not block step execution | wrun_01KYB5Z9VQVYESNHA77ATN4SGC
  • 'hookGetConflictWithParallelStepWorkfl…' - hook.getConflict() does not block step execution | wrun_01KYB5Z8W9Z0N1HX64E9WF8E49
  • hookGetConflictThenStepParallelWorkflow - hook.getConflict() continuation step runs alongside other steps | wrun_01KYB5Z8V9HT55T043PV9325MM
  • hookGetConflictWorkflow - hook.getConflict() resolves with the conflicting run when token is already registered | wrun_01KYB5ZASW23HBJ4WG10RC37A5
  • hookClaimOnlyMutexWorkflow - hook works as a pure run mutex without payload data | wrun_01KYB6018JQYZA02S424DTBD2N
  • hookAdoptOwnerResultWorkflow - duplicate adopts the owner result via conflict.returnValue | wrun_01KYB60BFE47C892AK86B1SHHQ
  • hookSignalOwnerWorkflow - duplicate forwards its payload to the owner via resumeHook | wrun_01KYB5ZGNZHTT7P6A57G05SJTM
  • hookSupersedeOwnerWorkflow - duplicate cancels the owner and claims the released token | wrun_01KYB5ZJMBBSTYAZ2WRQA232DW
  • resume-or-start route pattern - resumeHook retried after start() reaches the new run | wrun_01KYB60381CDYT3MM95ZEMJ59W
  • hookDisposeTestWorkflow - hook token reuse after explicit disposal while workflow still running | wrun_01KYB607576DEERRW27639Z1XW
  • stepFunctionPassingWorkflow - step function references can be passed as arguments (without closure vars) | wrun_01KYB6087JZBH9JC0YE9J3FE83
  • stepFunctionWithClosureWorkflow - step function with closure variables passed as argument | wrun_01KYB5ZENEBQAGCN0A7KH4HM9Z
  • closureVariableWorkflow - nested step functions with closure variables | wrun_01KYB60E2BCYS1QDJFM65NWZQW
  • spawnWorkflowFromStepWorkflow - spawning a child workflow using start() inside a step | wrun_01KYB6091J6SJYBHQMGAT10H02
  • 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_01KYB60R0QVN7FT12AZHKM10CB
  • Calculator.calculate - static workflow method using static step methods from another class | wrun_01KYB60GVBXQPAEWGERCFM50WC
  • AllInOneService.processNumber - static workflow method using sibling static step methods | wrun_01KYB60MSSNZYQPBBMGAFPSMDA
  • ChainableService.processWithThis - static step methods using this to reference the class | wrun_01KYB60RVQBB34HKJGBBQF6BQC
  • thisSerializationWorkflow - step function invoked with .call() and .apply() | wrun_01KYB60TMW6BVW91S9GRSA5G66
  • customSerializationWorkflow - custom class serialization with WORKFLOW_SERIALIZE/WORKFLOW_DESERIALIZE | wrun_01KYB5ZQFCNXBFCF53HB0WSEHM
  • instanceMethodStepWorkflow - instance methods with "use step" directive | wrun_01KYB5ZVT3YKCNJETE22JRPM53
  • crossContextSerdeWorkflow - classes defined in step code are deserializable in workflow context | wrun_01KYB602D12QSKA4M3MABD40JZ
  • stepFunctionAsStartArgWorkflow - step function reference passed as start() argument
  • cancelRun - cancelling a running workflow | wrun_01KYB617ERA4553ZMXYNQW2CC2
  • cancelRun via CLI - cancelling a running workflow | wrun_01KYB60XGA7MJHC97ZRPHXPEFA
  • 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_01KYB60832QC6C1DZ0TT55CNDD
  • hookWithSleepFinalStepWorkflow - step only on final payload | wrun_01KYB60B8Z8ER8SHDK59FNKQJ5
  • sleepInLoopWorkflow - sleep inside loop with steps actually delays each iteration | wrun_01KYB60DBG3DQT63AEB9Y1XHE6
  • sleepWithSequentialStepsWorkflow - sequential steps work with concurrent sleep (control) | wrun_01KYB60RYGJPYPK0D6HRVBEW3K
  • importMetaUrlWorkflow - import.meta.url is available in step bundles | wrun_01KYB60B7HC12QJYHZVHG89ZEN
  • metadataFromHelperWorkflow - getWorkflowMetadata/getStepMetadata work from module-level helper (#1577) | wrun_01KYB611GDSE752X53D4KF78BS
  • resilient start: addTenWorkflow completes when run_created returns 500 | wrun_01KYB614B1V9A99SMXND9N86EB

Details by Category

❌ ▲ Vercel Production
AppPassedFailedSkipped
❌ astro64338
❌ example60378
❌ express63348
❌ fastify61368
❌ hono61368
❌ nextjs-turbopack62403
❌ nextjs-webpack62403
❌ nitro61368
❌ nuxt64338
❌ sveltekit61368
❌ vite60378
✅ 💻 Local Development
AppPassedFailedSkipped
✅ astro-stable9906
✅ express-stable9906
✅ fastify-stable9906
✅ hono-stable9906
✅ nextjs-turbopack-canary86019
✅ nextjs-turbopack-stable10500
✅ nextjs-webpack-canary86019
✅ nextjs-webpack-stable10500
✅ nitro-stable9906
✅ nuxt-stable9906
✅ sveltekit-stable9906
✅ vite-stable9906
✅ 📦 Local Production
AppPassedFailedSkipped
✅ astro-stable9906
✅ express-stable9906
✅ fastify-stable9906
✅ hono-stable9906
✅ nextjs-turbopack-canary86019
✅ nextjs-turbopack-stable10500
✅ nextjs-webpack-canary86019
✅ nextjs-webpack-stable10500
✅ nitro-stable9906
✅ nuxt-stable9906
✅ sveltekit-stable9906
✅ vite-stable9906
✅ 🐘 Local Postgres
AppPassedFailedSkipped
✅ astro-stable9906
✅ express-stable9906
✅ fastify-stable9906
✅ hono-stable9906
✅ nextjs-turbopack-canary86019
✅ nextjs-turbopack-stable10500
✅ nextjs-webpack-canary86019
✅ nextjs-webpack-stable10500
✅ nitro-stable9906
✅ nuxt-stable9906
✅ sveltekit-stable9906
✅ vite-stable9906
✅ 🪟 Windows
AppPassedFailedSkipped
✅ nextjs-turbopack10500
❌ 🌍 Community Worlds
AppPassedFailedSkipped
✅ mongodb-dev403
✅ redis-dev403
❌ redis67190
✅ turso-dev403
❌ turso3830
✅ 📋 Other
AppPassedFailedSkipped
✅ e2e-local-dev-nest-stable9906
✅ e2e-local-dev-tanstack-start-stable9906
✅ e2e-local-postgres-nest-stable9906
✅ e2e-local-postgres-tanstack-start-stable9906
✅ e2e-local-prod-nest-stable9906
✅ e2e-local-prod-tanstack-start-stable9906

📋 View full workflow run


Some E2E test jobs failed:

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

Check the workflow run for details.

@VaguelySerious
VaguelySerious merged commit c77a82d into stableJul 25, 2026
83 of 98 checks passed
@VaguelySerious
VaguelySerious deleted the backport/pr-3055-to-stable branch July 25, 2026 00:00
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.

1 participant

@VaguelySerious