@calmo/task-runner 3.8.0 → 3.8.1
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/CHANGELOG.md +6 -0
- package/coverage/coverage-final.json +5 -4
- package/coverage/index.html +18 -18
- package/coverage/lcov-report/index.html +18 -18
- package/coverage/lcov-report/src/EventBus.ts.html +4 -4
- package/coverage/lcov-report/src/TaskGraphValidationError.ts.html +1 -1
- package/coverage/lcov-report/src/TaskGraphValidator.ts.html +120 -60
- package/coverage/lcov-report/src/TaskRunner.ts.html +78 -63
- package/coverage/lcov-report/src/TaskRunnerBuilder.ts.html +1 -1
- package/coverage/lcov-report/src/TaskRunnerExecutionConfig.ts.html +1 -1
- package/coverage/lcov-report/src/TaskStateManager.ts.html +17 -29
- package/coverage/lcov-report/src/WorkflowExecutor.ts.html +1 -1
- package/coverage/lcov-report/src/contracts/ErrorTypes.ts.html +103 -0
- package/coverage/lcov-report/src/contracts/RunnerEvents.ts.html +1 -1
- package/coverage/lcov-report/src/contracts/index.html +23 -8
- package/coverage/lcov-report/src/index.html +10 -10
- package/coverage/lcov-report/src/strategies/DryRunExecutionStrategy.ts.html +1 -1
- package/coverage/lcov-report/src/strategies/RetryingExecutionStrategy.ts.html +1 -1
- package/coverage/lcov-report/src/strategies/StandardExecutionStrategy.ts.html +1 -1
- package/coverage/lcov-report/src/strategies/index.html +1 -1
- package/coverage/lcov.info +206 -184
- package/coverage/src/EventBus.ts.html +4 -4
- package/coverage/src/TaskGraphValidationError.ts.html +1 -1
- package/coverage/src/TaskGraphValidator.ts.html +120 -60
- package/coverage/src/TaskRunner.ts.html +78 -63
- package/coverage/src/TaskRunnerBuilder.ts.html +1 -1
- package/coverage/src/TaskRunnerExecutionConfig.ts.html +1 -1
- package/coverage/src/TaskStateManager.ts.html +17 -29
- package/coverage/src/WorkflowExecutor.ts.html +1 -1
- package/coverage/src/contracts/ErrorTypes.ts.html +103 -0
- package/coverage/src/contracts/RunnerEvents.ts.html +1 -1
- package/coverage/src/contracts/index.html +23 -8
- package/coverage/src/index.html +10 -10
- package/coverage/src/strategies/DryRunExecutionStrategy.ts.html +1 -1
- package/coverage/src/strategies/RetryingExecutionStrategy.ts.html +1 -1
- package/coverage/src/strategies/StandardExecutionStrategy.ts.html +1 -1
- package/coverage/src/strategies/index.html +1 -1
- package/dist/TaskGraphValidator.d.ts +3 -0
- package/dist/TaskGraphValidator.js +33 -26
- package/dist/TaskGraphValidator.js.map +1 -1
- package/dist/TaskRunner.d.ts +4 -0
- package/dist/TaskRunner.js +38 -44
- package/dist/TaskRunner.js.map +1 -1
- package/dist/TaskStateManager.js +1 -5
- package/dist/TaskStateManager.js.map +1 -1
- package/dist/contracts/ErrorTypes.d.ts +6 -0
- package/dist/contracts/ErrorTypes.js +7 -0
- package/dist/contracts/ErrorTypes.js.map +1 -0
- package/dist/contracts/ValidationError.d.ts +2 -1
- package/package.json +1 -1
- package/src/TaskGraphValidator.ts +52 -32
- package/src/TaskRunner.ts +51 -46
- package/src/TaskStateManager.ts +1 -5
- package/src/contracts/ErrorTypes.ts +6 -0
- package/src/contracts/ValidationError.ts +10 -1
- package/test-report.xml +134 -128
package/test-report.xml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
<?xml version="1.0" encoding="UTF-8" ?>
|
|
2
|
-
<testsuites name="vitest tests" tests="
|
|
3
|
-
<testsuite name="tests/ComplexScenario.test.ts" timestamp="2026-01-
|
|
4
|
-
<testcase classname="tests/ComplexScenario.test.ts" name="Complex Scenario Integration Tests > 1. All steps execute when all succeed and context is hydrated" time="0.
|
|
2
|
+
<testsuites name="vitest tests" tests="107" failures="0" errors="0" time="1.424536002">
|
|
3
|
+
<testsuite name="tests/ComplexScenario.test.ts" timestamp="2026-01-21T01:05:21.363Z" hostname="runnervmmtnos" tests="2" failures="0" errors="0" skipped="0" time="0.012215606">
|
|
4
|
+
<testcase classname="tests/ComplexScenario.test.ts" name="Complex Scenario Integration Tests > 1. All steps execute when all succeed and context is hydrated" time="0.007696672">
|
|
5
5
|
<system-out>
|
|
6
6
|
Running StepA
|
|
7
7
|
Running StepB
|
|
@@ -15,255 +15,261 @@ Running StepG
|
|
|
15
15
|
|
|
16
16
|
</system-out>
|
|
17
17
|
</testcase>
|
|
18
|
-
<testcase classname="tests/ComplexScenario.test.ts" name="Complex Scenario Integration Tests > 2. The 'skip' propagation works as intended if something breaks up in the tree" time="0.
|
|
18
|
+
<testcase classname="tests/ComplexScenario.test.ts" name="Complex Scenario Integration Tests > 2. The 'skip' propagation works as intended if something breaks up in the tree" time="0.002378711">
|
|
19
19
|
</testcase>
|
|
20
20
|
</testsuite>
|
|
21
|
-
<testsuite name="tests/DryRunExecutionStrategy.test.ts" timestamp="2026-01-
|
|
22
|
-
<testcase classname="tests/DryRunExecutionStrategy.test.ts" name="DryRunExecutionStrategy > should return success without running the task" time="0.
|
|
21
|
+
<testsuite name="tests/DryRunExecutionStrategy.test.ts" timestamp="2026-01-21T01:05:21.364Z" hostname="runnervmmtnos" tests="1" failures="0" errors="0" skipped="0" time="0.003103036">
|
|
22
|
+
<testcase classname="tests/DryRunExecutionStrategy.test.ts" name="DryRunExecutionStrategy > should return success without running the task" time="0.001651568">
|
|
23
23
|
</testcase>
|
|
24
24
|
</testsuite>
|
|
25
|
-
<testsuite name="tests/EventBus.test.ts" timestamp="2026-01-
|
|
26
|
-
<testcase classname="tests/EventBus.test.ts" name="EventBus > should handle async listeners throwing errors without crashing" time="0.
|
|
25
|
+
<testsuite name="tests/EventBus.test.ts" timestamp="2026-01-21T01:05:21.364Z" hostname="runnervmmtnos" tests="1" failures="0" errors="0" skipped="0" time="0.018845569">
|
|
26
|
+
<testcase classname="tests/EventBus.test.ts" name="EventBus > should handle async listeners throwing errors without crashing" time="0.016549328">
|
|
27
27
|
</testcase>
|
|
28
28
|
</testsuite>
|
|
29
|
-
<testsuite name="tests/TaskGraphValidator.test.ts" timestamp="2026-01-
|
|
30
|
-
<testcase classname="tests/TaskGraphValidator.test.ts" name="TaskGraphValidator > should be instantiated" time="0.
|
|
29
|
+
<testsuite name="tests/TaskGraphValidator.test.ts" timestamp="2026-01-21T01:05:21.365Z" hostname="runnervmmtnos" tests="10" failures="0" errors="0" skipped="0" time="0.010551468">
|
|
30
|
+
<testcase classname="tests/TaskGraphValidator.test.ts" name="TaskGraphValidator > should be instantiated" time="0.00195979">
|
|
31
31
|
</testcase>
|
|
32
|
-
<testcase classname="tests/TaskGraphValidator.test.ts" name="TaskGraphValidator > should return valid result for empty graph" time="0.
|
|
32
|
+
<testcase classname="tests/TaskGraphValidator.test.ts" name="TaskGraphValidator > should return valid result for empty graph" time="0.001517435">
|
|
33
33
|
</testcase>
|
|
34
|
-
<testcase classname="tests/TaskGraphValidator.test.ts" name="TaskGraphValidator > should detect duplicate tasks" time="0.
|
|
34
|
+
<testcase classname="tests/TaskGraphValidator.test.ts" name="TaskGraphValidator > should detect duplicate tasks" time="0.001755494">
|
|
35
35
|
</testcase>
|
|
36
|
-
<testcase classname="tests/TaskGraphValidator.test.ts" name="TaskGraphValidator > should detect missing dependencies" time="0.
|
|
36
|
+
<testcase classname="tests/TaskGraphValidator.test.ts" name="TaskGraphValidator > should detect missing dependencies" time="0.000479187">
|
|
37
37
|
</testcase>
|
|
38
|
-
<testcase classname="tests/TaskGraphValidator.test.ts" name="TaskGraphValidator > should detect cycles" time="0.
|
|
38
|
+
<testcase classname="tests/TaskGraphValidator.test.ts" name="TaskGraphValidator > should detect cycles" time="0.000824171">
|
|
39
39
|
</testcase>
|
|
40
|
-
<testcase classname="tests/TaskGraphValidator.test.ts" name="TaskGraphValidator > should return valid for a correct graph" time="0.
|
|
40
|
+
<testcase classname="tests/TaskGraphValidator.test.ts" name="TaskGraphValidator > should return valid for a correct graph" time="0.000352591">
|
|
41
41
|
</testcase>
|
|
42
|
-
<testcase classname="tests/TaskGraphValidator.test.ts" name="TaskGraphValidator > should not detect cycles if missing dependencies are present" time="0.
|
|
42
|
+
<testcase classname="tests/TaskGraphValidator.test.ts" name="TaskGraphValidator > should not detect cycles if missing dependencies are present" time="0.000373315">
|
|
43
43
|
</testcase>
|
|
44
|
-
<testcase classname="tests/TaskGraphValidator.test.ts" name="TaskGraphValidator > should detect more complex cycles" time="0.
|
|
44
|
+
<testcase classname="tests/TaskGraphValidator.test.ts" name="TaskGraphValidator > should detect more complex cycles" time="0.000288674">
|
|
45
45
|
</testcase>
|
|
46
|
-
<testcase classname="tests/TaskGraphValidator.test.ts" name="TaskGraphValidator > should handle cycle detection with no cycles but shared dependencies" time="0.
|
|
46
|
+
<testcase classname="tests/TaskGraphValidator.test.ts" name="TaskGraphValidator > should handle cycle detection with no cycles but shared dependencies" time="0.00038483">
|
|
47
|
+
</testcase>
|
|
48
|
+
<testcase classname="tests/TaskGraphValidator.test.ts" name="TaskGraphValidator > should create a formatted error message" time="0.000244623">
|
|
47
49
|
</testcase>
|
|
48
50
|
</testsuite>
|
|
49
|
-
<testsuite name="tests/TaskGraphValidatorDoS.test.ts" timestamp="2026-01-
|
|
50
|
-
<testcase classname="tests/TaskGraphValidatorDoS.test.ts" name="TaskGraphValidator - Deep Recursion > should handle deep graphs without stack overflow" time="0.
|
|
51
|
+
<testsuite name="tests/TaskGraphValidatorDoS.test.ts" timestamp="2026-01-21T01:05:21.367Z" hostname="runnervmmtnos" tests="1" failures="0" errors="0" skipped="0" time="0.048048157">
|
|
52
|
+
<testcase classname="tests/TaskGraphValidatorDoS.test.ts" name="TaskGraphValidator - Deep Recursion > should handle deep graphs without stack overflow" time="0.046462809">
|
|
51
53
|
</testcase>
|
|
52
54
|
</testsuite>
|
|
53
|
-
<testsuite name="tests/TaskRunner.test.ts" timestamp="2026-01-
|
|
54
|
-
<testcase classname="tests/TaskRunner.test.ts" name="TaskRunner > should run tasks in the correct sequential order" time="0.
|
|
55
|
+
<testsuite name="tests/TaskRunner.test.ts" timestamp="2026-01-21T01:05:21.367Z" hostname="runnervmmtnos" tests="11" failures="0" errors="0" skipped="0" time="0.113557606">
|
|
56
|
+
<testcase classname="tests/TaskRunner.test.ts" name="TaskRunner > should run tasks in the correct sequential order" time="0.004219388">
|
|
55
57
|
</testcase>
|
|
56
|
-
<testcase classname="tests/TaskRunner.test.ts" name="TaskRunner > should handle an empty list of tasks gracefully" time="0.
|
|
58
|
+
<testcase classname="tests/TaskRunner.test.ts" name="TaskRunner > should handle an empty list of tasks gracefully" time="0.000491394">
|
|
57
59
|
</testcase>
|
|
58
|
-
<testcase classname="tests/TaskRunner.test.ts" name="TaskRunner > should run independent tasks in parallel" time="0.
|
|
60
|
+
<testcase classname="tests/TaskRunner.test.ts" name="TaskRunner > should run independent tasks in parallel" time="0.100686041">
|
|
59
61
|
</testcase>
|
|
60
|
-
<testcase classname="tests/TaskRunner.test.ts" name="TaskRunner > should skip dependent tasks if a root task fails" time="0.
|
|
62
|
+
<testcase classname="tests/TaskRunner.test.ts" name="TaskRunner > should skip dependent tasks if a root task fails" time="0.000531917">
|
|
61
63
|
</testcase>
|
|
62
|
-
<testcase classname="tests/TaskRunner.test.ts" name="TaskRunner > should throw an error for 'circular dependency'" time="0.
|
|
64
|
+
<testcase classname="tests/TaskRunner.test.ts" name="TaskRunner > should throw an error for 'circular dependency'" time="0.002419368">
|
|
63
65
|
</testcase>
|
|
64
|
-
<testcase classname="tests/TaskRunner.test.ts" name="TaskRunner > should throw an error for 'missing dependency'" time="0.
|
|
66
|
+
<testcase classname="tests/TaskRunner.test.ts" name="TaskRunner > should throw an error for 'missing dependency'" time="0.000383966">
|
|
65
67
|
</testcase>
|
|
66
|
-
<testcase classname="tests/TaskRunner.test.ts" name="TaskRunner > should handle tasks that throw an error during execution" time="0.
|
|
68
|
+
<testcase classname="tests/TaskRunner.test.ts" name="TaskRunner > should handle tasks that throw an error during execution" time="0.000385579">
|
|
67
69
|
</testcase>
|
|
68
|
-
<testcase classname="tests/TaskRunner.test.ts" name="TaskRunner > should skip tasks whose dependencies are skipped" time="0.
|
|
70
|
+
<testcase classname="tests/TaskRunner.test.ts" name="TaskRunner > should skip tasks whose dependencies are skipped" time="0.000428851">
|
|
69
71
|
</testcase>
|
|
70
|
-
<testcase classname="tests/TaskRunner.test.ts" name="TaskRunner > should handle tasks that throw a non-Error object during execution" time="0.
|
|
72
|
+
<testcase classname="tests/TaskRunner.test.ts" name="TaskRunner > should handle tasks that throw a non-Error object during execution" time="0.000392242">
|
|
71
73
|
</testcase>
|
|
72
|
-
<testcase classname="tests/TaskRunner.test.ts" name="TaskRunner > should handle duplicate steps where one gets skipped due to failed dependency" time="0.
|
|
74
|
+
<testcase classname="tests/TaskRunner.test.ts" name="TaskRunner > should handle duplicate steps where one gets skipped due to failed dependency" time="0.000470835">
|
|
73
75
|
</testcase>
|
|
74
|
-
<testcase classname="tests/TaskRunner.test.ts" name="TaskRunner > should throw TaskGraphValidationError with detailed result" time="0.
|
|
76
|
+
<testcase classname="tests/TaskRunner.test.ts" name="TaskRunner > should throw TaskGraphValidationError with detailed result" time="0.000768607">
|
|
75
77
|
</testcase>
|
|
76
78
|
</testsuite>
|
|
77
|
-
<testsuite name="tests/TaskRunnerEvents.test.ts" timestamp="2026-01-
|
|
78
|
-
<testcase classname="tests/TaskRunnerEvents.test.ts" name="TaskRunner Events > should fire all lifecycle events in a successful run" time="0.
|
|
79
|
+
<testsuite name="tests/TaskRunnerEvents.test.ts" timestamp="2026-01-21T01:05:21.369Z" hostname="runnervmmtnos" tests="7" failures="0" errors="0" skipped="0" time="0.012771131">
|
|
80
|
+
<testcase classname="tests/TaskRunnerEvents.test.ts" name="TaskRunner Events > should fire all lifecycle events in a successful run" time="0.005018082">
|
|
79
81
|
</testcase>
|
|
80
|
-
<testcase classname="tests/TaskRunnerEvents.test.ts" name="TaskRunner Events > should fire taskSkipped event when dependency fails" time="0.
|
|
82
|
+
<testcase classname="tests/TaskRunnerEvents.test.ts" name="TaskRunner Events > should fire taskSkipped event when dependency fails" time="0.003142855">
|
|
81
83
|
</testcase>
|
|
82
|
-
<testcase classname="tests/TaskRunnerEvents.test.ts" name="TaskRunner Events > should not crash if a listener throws an error" time="0.
|
|
84
|
+
<testcase classname="tests/TaskRunnerEvents.test.ts" name="TaskRunner Events > should not crash if a listener throws an error" time="0.001037226">
|
|
83
85
|
</testcase>
|
|
84
|
-
<testcase classname="tests/TaskRunnerEvents.test.ts" name="TaskRunner Events > should fire workflow events even for empty step list" time="0.
|
|
86
|
+
<testcase classname="tests/TaskRunnerEvents.test.ts" name="TaskRunner Events > should fire workflow events even for empty step list" time="0.000461514">
|
|
85
87
|
</testcase>
|
|
86
|
-
<testcase classname="tests/TaskRunnerEvents.test.ts" name="TaskRunner Events > should handle unsubscribe correctly" time="0.
|
|
88
|
+
<testcase classname="tests/TaskRunnerEvents.test.ts" name="TaskRunner Events > should handle unsubscribe correctly" time="0.000620256">
|
|
87
89
|
</testcase>
|
|
88
|
-
<testcase classname="tests/TaskRunnerEvents.test.ts" name="TaskRunner Events > should safely handle off() when no listeners exist" time="0.
|
|
90
|
+
<testcase classname="tests/TaskRunnerEvents.test.ts" name="TaskRunner Events > should safely handle off() when no listeners exist" time="0.000322195">
|
|
89
91
|
</testcase>
|
|
90
|
-
<testcase classname="tests/TaskRunnerEvents.test.ts" name="TaskRunner Events > should support multiple listeners for the same event" time="0.
|
|
92
|
+
<testcase classname="tests/TaskRunnerEvents.test.ts" name="TaskRunner Events > should support multiple listeners for the same event" time="0.000366288">
|
|
91
93
|
</testcase>
|
|
92
94
|
</testsuite>
|
|
93
|
-
<testsuite name="tests/TaskRunnerMermaid.test.ts" timestamp="2026-01-
|
|
94
|
-
<testcase classname="tests/TaskRunnerMermaid.test.ts" name="TaskRunner Mermaid Graph > should generate a simple graph with no dependencies" time="0.
|
|
95
|
+
<testsuite name="tests/TaskRunnerMermaid.test.ts" timestamp="2026-01-21T01:05:21.370Z" hostname="runnervmmtnos" tests="5" failures="0" errors="0" skipped="0" time="0.00875328">
|
|
96
|
+
<testcase classname="tests/TaskRunnerMermaid.test.ts" name="TaskRunner Mermaid Graph > should generate a simple graph with no dependencies" time="0.003365164">
|
|
95
97
|
</testcase>
|
|
96
|
-
<testcase classname="tests/TaskRunnerMermaid.test.ts" name="TaskRunner Mermaid Graph > should generate a graph with dependencies" time="0.
|
|
98
|
+
<testcase classname="tests/TaskRunnerMermaid.test.ts" name="TaskRunner Mermaid Graph > should generate a graph with dependencies" time="0.000707835">
|
|
97
99
|
</testcase>
|
|
98
|
-
<testcase classname="tests/TaskRunnerMermaid.test.ts" name="TaskRunner Mermaid Graph > should handle mixed independent and dependent tasks" time="0.
|
|
100
|
+
<testcase classname="tests/TaskRunnerMermaid.test.ts" name="TaskRunner Mermaid Graph > should handle mixed independent and dependent tasks" time="0.00037726">
|
|
99
101
|
</testcase>
|
|
100
|
-
<testcase classname="tests/TaskRunnerMermaid.test.ts" name="TaskRunner Mermaid Graph > should handle special characters in task names" time="0.
|
|
102
|
+
<testcase classname="tests/TaskRunnerMermaid.test.ts" name="TaskRunner Mermaid Graph > should handle special characters in task names" time="0.000699983">
|
|
101
103
|
</testcase>
|
|
102
|
-
<testcase classname="tests/TaskRunnerMermaid.test.ts" name="TaskRunner Mermaid Graph > should sanitize brackets and parentheses" time="0.
|
|
104
|
+
<testcase classname="tests/TaskRunnerMermaid.test.ts" name="TaskRunner Mermaid Graph > should sanitize brackets and parentheses" time="0.00082321">
|
|
103
105
|
</testcase>
|
|
104
106
|
</testsuite>
|
|
105
|
-
<testsuite name="tests/TaskRunnerRefactor.test.ts" timestamp="2026-01-
|
|
106
|
-
<testcase classname="tests/TaskRunnerRefactor.test.ts" name="TaskRunner Refactor Coverage > should allow setting execution strategy" time="0.
|
|
107
|
+
<testsuite name="tests/TaskRunnerRefactor.test.ts" timestamp="2026-01-21T01:05:21.371Z" hostname="runnervmmtnos" tests="6" failures="0" errors="0" skipped="0" time="0.00876654">
|
|
108
|
+
<testcase classname="tests/TaskRunnerRefactor.test.ts" name="TaskRunner Refactor Coverage > should allow setting execution strategy" time="0.002090217">
|
|
109
|
+
</testcase>
|
|
110
|
+
<testcase classname="tests/TaskRunnerRefactor.test.ts" name="TaskRunner Refactor Coverage > should allow unsubscribing from events" time="0.001041212">
|
|
107
111
|
</testcase>
|
|
108
|
-
<testcase classname="tests/TaskRunnerRefactor.test.ts" name="TaskRunner Refactor Coverage > should
|
|
112
|
+
<testcase classname="tests/TaskRunnerRefactor.test.ts" name="TaskRunner Refactor Coverage > TaskStateManager.cancelAllPending should handle non-existing tasks gracefully" time="0.000504627">
|
|
109
113
|
</testcase>
|
|
110
|
-
<testcase classname="tests/TaskRunnerRefactor.test.ts" name="TaskRunner Refactor Coverage >
|
|
114
|
+
<testcase classname="tests/TaskRunnerRefactor.test.ts" name="TaskRunner Refactor Coverage > TaskRunnerBuilder should build a TaskRunner" time="0.000626691">
|
|
111
115
|
</testcase>
|
|
112
|
-
<testcase classname="tests/TaskRunnerRefactor.test.ts" name="TaskRunner Refactor Coverage > TaskRunnerBuilder should build a TaskRunner" time="0.
|
|
116
|
+
<testcase classname="tests/TaskRunnerRefactor.test.ts" name="TaskRunner Refactor Coverage > TaskRunnerBuilder should build a TaskRunner with no listeners" time="0.000244143">
|
|
113
117
|
</testcase>
|
|
114
|
-
<testcase classname="tests/TaskRunnerRefactor.test.ts" name="TaskRunner Refactor Coverage >
|
|
118
|
+
<testcase classname="tests/TaskRunnerRefactor.test.ts" name="TaskRunner Refactor Coverage > WorkflowExecutor should break infinite loop if no progress can be made" time="0.002102974">
|
|
115
119
|
</testcase>
|
|
116
|
-
|
|
120
|
+
</testsuite>
|
|
121
|
+
<testsuite name="tests/TaskStateManager.repro.test.ts" timestamp="2026-01-21T01:05:21.372Z" hostname="runnervmmtnos" tests="1" failures="0" errors="0" skipped="0" time="0.00967355">
|
|
122
|
+
<testcase classname="tests/TaskStateManager.repro.test.ts" name="TaskStateManager Repro > should emit taskEnd event when cancelling pending tasks" time="0.007513019">
|
|
117
123
|
</testcase>
|
|
118
124
|
</testsuite>
|
|
119
|
-
<testsuite name="tests/WorkflowExecutor.test.ts" timestamp="2026-01-
|
|
120
|
-
<testcase classname="tests/WorkflowExecutor.test.ts" name="WorkflowExecutor > should execute steps sequentially when dependencies exist" time="0.
|
|
125
|
+
<testsuite name="tests/WorkflowExecutor.test.ts" timestamp="2026-01-21T01:05:21.372Z" hostname="runnervmmtnos" tests="3" failures="0" errors="0" skipped="0" time="0.055622805">
|
|
126
|
+
<testcase classname="tests/WorkflowExecutor.test.ts" name="WorkflowExecutor > should execute steps sequentially when dependencies exist" time="0.002755218">
|
|
121
127
|
</testcase>
|
|
122
|
-
<testcase classname="tests/WorkflowExecutor.test.ts" name="WorkflowExecutor > should skip dependent steps if dependency fails" time="0.
|
|
128
|
+
<testcase classname="tests/WorkflowExecutor.test.ts" name="WorkflowExecutor > should skip dependent steps if dependency fails" time="0.000302065">
|
|
123
129
|
</testcase>
|
|
124
|
-
<testcase classname="tests/WorkflowExecutor.test.ts" name="WorkflowExecutor > should run independent steps in parallel" time="0.
|
|
130
|
+
<testcase classname="tests/WorkflowExecutor.test.ts" name="WorkflowExecutor > should run independent steps in parallel" time="0.05089232">
|
|
125
131
|
</testcase>
|
|
126
132
|
</testsuite>
|
|
127
|
-
<testsuite name="tests/cancellation.test.ts" timestamp="2026-01-
|
|
128
|
-
<testcase classname="tests/cancellation.test.ts" name="TaskRunner Cancellation > should execute tasks normally without cancellation" time="0.
|
|
133
|
+
<testsuite name="tests/cancellation.test.ts" timestamp="2026-01-21T01:05:21.373Z" hostname="runnervmmtnos" tests="10" failures="0" errors="0" skipped="0" time="0.162077698">
|
|
134
|
+
<testcase classname="tests/cancellation.test.ts" name="TaskRunner Cancellation > should execute tasks normally without cancellation" time="0.00331811">
|
|
129
135
|
</testcase>
|
|
130
|
-
<testcase classname="tests/cancellation.test.ts" name="TaskRunner Cancellation > should cancel workflow via AbortSignal" time="0.
|
|
136
|
+
<testcase classname="tests/cancellation.test.ts" name="TaskRunner Cancellation > should cancel workflow via AbortSignal" time="0.01190686">
|
|
131
137
|
</testcase>
|
|
132
|
-
<testcase classname="tests/cancellation.test.ts" name="TaskRunner Cancellation > should cancel workflow via global timeout" time="0.
|
|
138
|
+
<testcase classname="tests/cancellation.test.ts" name="TaskRunner Cancellation > should cancel workflow via global timeout" time="0.050169609">
|
|
133
139
|
</testcase>
|
|
134
|
-
<testcase classname="tests/cancellation.test.ts" name="TaskRunner Cancellation > should handle pre-aborted signal" time="0.
|
|
140
|
+
<testcase classname="tests/cancellation.test.ts" name="TaskRunner Cancellation > should handle pre-aborted signal" time="0.000436596">
|
|
135
141
|
</testcase>
|
|
136
|
-
<testcase classname="tests/cancellation.test.ts" name="TaskRunner Cancellation > should propagate cancellation to running task" time="0.
|
|
142
|
+
<testcase classname="tests/cancellation.test.ts" name="TaskRunner Cancellation > should propagate cancellation to running task" time="0.010652154">
|
|
137
143
|
</testcase>
|
|
138
|
-
<testcase classname="tests/cancellation.test.ts" name="TaskRunner Cancellation > should respect timeout over signal if timeout happens first" time="0.
|
|
144
|
+
<testcase classname="tests/cancellation.test.ts" name="TaskRunner Cancellation > should respect timeout over signal if timeout happens first" time="0.050890246">
|
|
139
145
|
</testcase>
|
|
140
|
-
<testcase classname="tests/cancellation.test.ts" name="TaskRunner Cancellation > should handle case where timeout is set AND signal is already aborted" time="0.
|
|
146
|
+
<testcase classname="tests/cancellation.test.ts" name="TaskRunner Cancellation > should handle case where timeout is set AND signal is already aborted" time="0.000359115">
|
|
141
147
|
</testcase>
|
|
142
|
-
<testcase classname="tests/cancellation.test.ts" name="TaskRunner Cancellation > should cancel workflow via AbortSignal when timeout is also set" time="0.
|
|
148
|
+
<testcase classname="tests/cancellation.test.ts" name="TaskRunner Cancellation > should cancel workflow via AbortSignal when timeout is also set" time="0.01073594">
|
|
143
149
|
</testcase>
|
|
144
|
-
<testcase classname="tests/cancellation.test.ts" name="TaskRunner Cancellation > should fail task if it throws non-abort error during cancellation" time="0.
|
|
150
|
+
<testcase classname="tests/cancellation.test.ts" name="TaskRunner Cancellation > should fail task if it throws non-abort error during cancellation" time="0.01079779">
|
|
145
151
|
</testcase>
|
|
146
|
-
<testcase classname="tests/cancellation.test.ts" name="TaskRunner Cancellation > should cancel task if it rejects with signal.reason" time="0.
|
|
152
|
+
<testcase classname="tests/cancellation.test.ts" name="TaskRunner Cancellation > should cancel task if it rejects with signal.reason" time="0.010561161">
|
|
147
153
|
</testcase>
|
|
148
154
|
</testsuite>
|
|
149
|
-
<testsuite name="tests/concurrency.test.ts" timestamp="2026-01-
|
|
150
|
-
<testcase classname="tests/concurrency.test.ts" name="Concurrency Control > should limit concurrency to 1" time="0.
|
|
155
|
+
<testsuite name="tests/concurrency.test.ts" timestamp="2026-01-21T01:05:21.374Z" hostname="runnervmmtnos" tests="4" failures="0" errors="0" skipped="0" time="0.349720723">
|
|
156
|
+
<testcase classname="tests/concurrency.test.ts" name="Concurrency Control > should limit concurrency to 1" time="0.154349528">
|
|
151
157
|
</testcase>
|
|
152
|
-
<testcase classname="tests/concurrency.test.ts" name="Concurrency Control > should limit concurrency to 2" time="0.
|
|
158
|
+
<testcase classname="tests/concurrency.test.ts" name="Concurrency Control > should limit concurrency to 2" time="0.101252971">
|
|
153
159
|
</testcase>
|
|
154
|
-
<testcase classname="tests/concurrency.test.ts" name="Concurrency Control > should handle unlimited concurrency (default)" time="0.
|
|
160
|
+
<testcase classname="tests/concurrency.test.ts" name="Concurrency Control > should handle unlimited concurrency (default)" time="0.050865397">
|
|
155
161
|
</testcase>
|
|
156
|
-
<testcase classname="tests/concurrency.test.ts" name="Concurrency Control > should run each task exactly once even when queued" time="0.
|
|
162
|
+
<testcase classname="tests/concurrency.test.ts" name="Concurrency Control > should run each task exactly once even when queued" time="0.041137448">
|
|
157
163
|
</testcase>
|
|
158
164
|
</testsuite>
|
|
159
|
-
<testsuite name="tests/conditional.test.ts" timestamp="2026-01-
|
|
160
|
-
<testcase classname="tests/conditional.test.ts" name="WorkflowExecutor Conditional Execution > should execute task when condition is undefined" time="0.
|
|
165
|
+
<testsuite name="tests/conditional.test.ts" timestamp="2026-01-21T01:05:21.375Z" hostname="runnervmmtnos" tests="11" failures="0" errors="0" skipped="0" time="0.051069695">
|
|
166
|
+
<testcase classname="tests/conditional.test.ts" name="WorkflowExecutor Conditional Execution > should execute task when condition is undefined" time="0.002590559">
|
|
161
167
|
</testcase>
|
|
162
|
-
<testcase classname="tests/conditional.test.ts" name="WorkflowExecutor Conditional Execution > should execute task when condition returns true" time="0.
|
|
168
|
+
<testcase classname="tests/conditional.test.ts" name="WorkflowExecutor Conditional Execution > should execute task when condition returns true" time="0.000375875">
|
|
163
169
|
</testcase>
|
|
164
|
-
<testcase classname="tests/conditional.test.ts" name="WorkflowExecutor Conditional Execution > should skip task when condition returns false" time="0.
|
|
170
|
+
<testcase classname="tests/conditional.test.ts" name="WorkflowExecutor Conditional Execution > should skip task when condition returns false" time="0.001543285">
|
|
165
171
|
</testcase>
|
|
166
|
-
<testcase classname="tests/conditional.test.ts" name="WorkflowExecutor Conditional Execution > should handle async condition" time="0.
|
|
172
|
+
<testcase classname="tests/conditional.test.ts" name="WorkflowExecutor Conditional Execution > should handle async condition" time="0.000313567">
|
|
167
173
|
</testcase>
|
|
168
|
-
<testcase classname="tests/conditional.test.ts" name="WorkflowExecutor Conditional Execution > should skip dependent tasks if parent is skipped due to condition" time="0.
|
|
174
|
+
<testcase classname="tests/conditional.test.ts" name="WorkflowExecutor Conditional Execution > should skip dependent tasks if parent is skipped due to condition" time="0.000683138">
|
|
169
175
|
</testcase>
|
|
170
|
-
<testcase classname="tests/conditional.test.ts" name="WorkflowExecutor Conditional Execution > should handle condition throwing error" time="0.
|
|
176
|
+
<testcase classname="tests/conditional.test.ts" name="WorkflowExecutor Conditional Execution > should handle condition throwing error" time="0.000359794">
|
|
171
177
|
</testcase>
|
|
172
|
-
<testcase classname="tests/conditional.test.ts" name="WorkflowExecutor Conditional Execution > should handle condition throwing non-Error object" time="0.
|
|
178
|
+
<testcase classname="tests/conditional.test.ts" name="WorkflowExecutor Conditional Execution > should handle condition throwing non-Error object" time="0.000391224">
|
|
173
179
|
</testcase>
|
|
174
|
-
<testcase classname="tests/conditional.test.ts" name="WorkflowExecutor Conditional Execution > should handle cancellation during async condition evaluation" time="0.
|
|
180
|
+
<testcase classname="tests/conditional.test.ts" name="WorkflowExecutor Conditional Execution > should handle cancellation during async condition evaluation" time="0.020712588">
|
|
175
181
|
</testcase>
|
|
176
|
-
<testcase classname="tests/conditional.test.ts" name="WorkflowExecutor Conditional Execution > should handle cancellation between condition and execution (or before execution if no condition)" time="0.
|
|
182
|
+
<testcase classname="tests/conditional.test.ts" name="WorkflowExecutor Conditional Execution > should handle cancellation between condition and execution (or before execution if no condition)" time="0.020919911">
|
|
177
183
|
</testcase>
|
|
178
|
-
<testcase classname="tests/conditional.test.ts" name="WorkflowExecutor Conditional Execution > should handle immediate cancellation" time="0.
|
|
184
|
+
<testcase classname="tests/conditional.test.ts" name="WorkflowExecutor Conditional Execution > should handle immediate cancellation" time="0.000631099">
|
|
179
185
|
</testcase>
|
|
180
|
-
<testcase classname="tests/conditional.test.ts" name="WorkflowExecutor Conditional Execution > should break loop if stuck (e.g. cycle)" time="0.
|
|
186
|
+
<testcase classname="tests/conditional.test.ts" name="WorkflowExecutor Conditional Execution > should break loop if stuck (e.g. cycle)" time="0.000337797">
|
|
181
187
|
</testcase>
|
|
182
188
|
</testsuite>
|
|
183
|
-
<testsuite name="tests/integration.test.ts" timestamp="2026-01-
|
|
184
|
-
<testcase classname="tests/integration.test.ts" name="TaskRunner Validation Integration > should throw validation error with clear message for duplicate tasks" time="0.
|
|
189
|
+
<testsuite name="tests/integration.test.ts" timestamp="2026-01-21T01:05:21.377Z" hostname="runnervmmtnos" tests="3" failures="0" errors="0" skipped="0" time="0.007828555">
|
|
190
|
+
<testcase classname="tests/integration.test.ts" name="TaskRunner Validation Integration > should throw validation error with clear message for duplicate tasks" time="0.004711263">
|
|
185
191
|
</testcase>
|
|
186
|
-
<testcase classname="tests/integration.test.ts" name="TaskRunner Validation Integration > should throw validation error with clear message for missing dependencies" time="0.
|
|
192
|
+
<testcase classname="tests/integration.test.ts" name="TaskRunner Validation Integration > should throw validation error with clear message for missing dependencies" time="0.000327388">
|
|
187
193
|
</testcase>
|
|
188
|
-
<testcase classname="tests/integration.test.ts" name="TaskRunner Validation Integration > should throw validation error with clear message for cycles" time="0.
|
|
194
|
+
<testcase classname="tests/integration.test.ts" name="TaskRunner Validation Integration > should throw validation error with clear message for cycles" time="0.000307702">
|
|
189
195
|
</testcase>
|
|
190
196
|
</testsuite>
|
|
191
|
-
<testsuite name="tests/priority.test.ts" timestamp="2026-01-
|
|
192
|
-
<testcase classname="tests/priority.test.ts" name="Task Priority Scheduling > should execute higher priority tasks first when concurrency is limited" time="0.
|
|
197
|
+
<testsuite name="tests/priority.test.ts" timestamp="2026-01-21T01:05:21.377Z" hostname="runnervmmtnos" tests="6" failures="0" errors="0" skipped="0" time="0.2337581">
|
|
198
|
+
<testcase classname="tests/priority.test.ts" name="Task Priority Scheduling > should execute higher priority tasks first when concurrency is limited" time="0.045253033">
|
|
193
199
|
</testcase>
|
|
194
|
-
<testcase classname="tests/priority.test.ts" name="Task Priority Scheduling > should maintain FIFO order for tasks with equal priority" time="0.
|
|
200
|
+
<testcase classname="tests/priority.test.ts" name="Task Priority Scheduling > should maintain FIFO order for tasks with equal priority" time="0.030862449">
|
|
195
201
|
</testcase>
|
|
196
|
-
<testcase classname="tests/priority.test.ts" name="Task Priority Scheduling > should treat undefined priority as 0" time="0.
|
|
202
|
+
<testcase classname="tests/priority.test.ts" name="Task Priority Scheduling > should treat undefined priority as 0" time="0.042347676">
|
|
197
203
|
</testcase>
|
|
198
|
-
<testcase classname="tests/priority.test.ts" name="Task Priority Scheduling > should respect priority when tasks become ready at different times" time="0.
|
|
204
|
+
<testcase classname="tests/priority.test.ts" name="Task Priority Scheduling > should respect priority when tasks become ready at different times" time="0.031688045">
|
|
199
205
|
</testcase>
|
|
200
|
-
<testcase classname="tests/priority.test.ts" name="Task Priority Scheduling > should not affect execution when concurrency is unlimited" time="0.
|
|
206
|
+
<testcase classname="tests/priority.test.ts" name="Task Priority Scheduling > should not affect execution when concurrency is unlimited" time="0.050684242">
|
|
201
207
|
</testcase>
|
|
202
|
-
<testcase classname="tests/priority.test.ts" name="Task Priority Scheduling > should handle mixed priority and dependency scenarios" time="0.
|
|
208
|
+
<testcase classname="tests/priority.test.ts" name="Task Priority Scheduling > should handle mixed priority and dependency scenarios" time="0.030819861">
|
|
203
209
|
</testcase>
|
|
204
210
|
</testsuite>
|
|
205
|
-
<testsuite name="tests/integration-tests/basic-structure.test.ts" timestamp="2026-01-
|
|
206
|
-
<testcase classname="tests/integration-tests/basic-structure.test.ts" name="Integration: Basic Structure > Scenario 1: Basic linear workflow (A -> B -> C)" time="0.
|
|
211
|
+
<testsuite name="tests/integration-tests/basic-structure.test.ts" timestamp="2026-01-21T01:05:21.378Z" hostname="runnervmmtnos" tests="4" failures="0" errors="0" skipped="0" time="0.132073855">
|
|
212
|
+
<testcase classname="tests/integration-tests/basic-structure.test.ts" name="Integration: Basic Structure > Scenario 1: Basic linear workflow (A -> B -> C)" time="0.034466577">
|
|
207
213
|
</testcase>
|
|
208
|
-
<testcase classname="tests/integration-tests/basic-structure.test.ts" name="Integration: Basic Structure > Scenario 2: Branching workflow (A -> [B, C] -> D)" time="0.
|
|
214
|
+
<testcase classname="tests/integration-tests/basic-structure.test.ts" name="Integration: Basic Structure > Scenario 2: Branching workflow (A -> [B, C] -> D)" time="0.032588923">
|
|
209
215
|
</testcase>
|
|
210
|
-
<testcase classname="tests/integration-tests/basic-structure.test.ts" name="Integration: Basic Structure > Scenario 12: Complex 'Diamond' dependency graph (A -> B -> D, A -> C -> D)" time="0.
|
|
216
|
+
<testcase classname="tests/integration-tests/basic-structure.test.ts" name="Integration: Basic Structure > Scenario 12: Complex 'Diamond' dependency graph (A -> B -> D, A -> C -> D)" time="0.041922502">
|
|
211
217
|
</testcase>
|
|
212
|
-
<testcase classname="tests/integration-tests/basic-structure.test.ts" name="Integration: Basic Structure > Scenario 14: Zero-dependency parallel burst" time="0.
|
|
218
|
+
<testcase classname="tests/integration-tests/basic-structure.test.ts" name="Integration: Basic Structure > Scenario 14: Zero-dependency parallel burst" time="0.02122284">
|
|
213
219
|
</testcase>
|
|
214
220
|
</testsuite>
|
|
215
|
-
<testsuite name="tests/integration-tests/concurrency-timing.test.ts" timestamp="2026-01-
|
|
216
|
-
<testcase classname="tests/integration-tests/concurrency-timing.test.ts" name="Integration: Concurrency and Timing > Scenario 6: Mixed duration tasks (verifying parallel efficiency)" time="0.
|
|
221
|
+
<testsuite name="tests/integration-tests/concurrency-timing.test.ts" timestamp="2026-01-21T01:05:21.379Z" hostname="runnervmmtnos" tests="3" failures="0" errors="0" skipped="0" time="0.126757272">
|
|
222
|
+
<testcase classname="tests/integration-tests/concurrency-timing.test.ts" name="Integration: Concurrency and Timing > Scenario 6: Mixed duration tasks (verifying parallel efficiency)" time="0.05312919">
|
|
217
223
|
</testcase>
|
|
218
|
-
<testcase classname="tests/integration-tests/concurrency-timing.test.ts" name="Integration: Concurrency and Timing > Scenario 7: Cancellation via AbortSignal" time="0.
|
|
224
|
+
<testcase classname="tests/integration-tests/concurrency-timing.test.ts" name="Integration: Concurrency and Timing > Scenario 7: Cancellation via AbortSignal" time="0.021261686">
|
|
219
225
|
</testcase>
|
|
220
|
-
<testcase classname="tests/integration-tests/concurrency-timing.test.ts" name="Integration: Concurrency and Timing > Scenario 8: Global timeout interrupting long tasks" time="0.
|
|
226
|
+
<testcase classname="tests/integration-tests/concurrency-timing.test.ts" name="Integration: Concurrency and Timing > Scenario 8: Global timeout interrupting long tasks" time="0.050659718">
|
|
221
227
|
</testcase>
|
|
222
228
|
</testsuite>
|
|
223
|
-
<testsuite name="tests/integration-tests/context-state.test.ts" timestamp="2026-01-
|
|
224
|
-
<testcase classname="tests/integration-tests/context-state.test.ts" name="Integration: Context and State > Scenario 4: Shared context mutation (A writes, B reads)" time="0.
|
|
229
|
+
<testsuite name="tests/integration-tests/context-state.test.ts" timestamp="2026-01-21T01:05:21.381Z" hostname="runnervmmtnos" tests="3" failures="0" errors="0" skipped="0" time="0.019474678">
|
|
230
|
+
<testcase classname="tests/integration-tests/context-state.test.ts" name="Integration: Context and State > Scenario 4: Shared context mutation (A writes, B reads)" time="0.004798706">
|
|
225
231
|
</testcase>
|
|
226
|
-
<testcase classname="tests/integration-tests/context-state.test.ts" name="Integration: Context and State > Scenario 9: Dynamic context validation" time="0.
|
|
232
|
+
<testcase classname="tests/integration-tests/context-state.test.ts" name="Integration: Context and State > Scenario 9: Dynamic context validation" time="0.000628251">
|
|
227
233
|
</testcase>
|
|
228
|
-
<testcase classname="tests/integration-tests/context-state.test.ts" name="Integration: Context and State > Scenario 13: Tasks with side-effects" time="0.
|
|
234
|
+
<testcase classname="tests/integration-tests/context-state.test.ts" name="Integration: Context and State > Scenario 13: Tasks with side-effects" time="0.011493652">
|
|
229
235
|
</testcase>
|
|
230
236
|
</testsuite>
|
|
231
|
-
<testsuite name="tests/integration-tests/dryRun.test.ts" timestamp="2026-01-
|
|
232
|
-
<testcase classname="tests/integration-tests/dryRun.test.ts" name="Integration: Dry Run > should execute successfully without side effects" time="0.
|
|
237
|
+
<testsuite name="tests/integration-tests/dryRun.test.ts" timestamp="2026-01-21T01:05:21.382Z" hostname="runnervmmtnos" tests="2" failures="0" errors="0" skipped="0" time="0.005687026">
|
|
238
|
+
<testcase classname="tests/integration-tests/dryRun.test.ts" name="Integration: Dry Run > should execute successfully without side effects" time="0.003424473">
|
|
233
239
|
</testcase>
|
|
234
|
-
<testcase classname="tests/integration-tests/dryRun.test.ts" name="Integration: Dry Run > should respect dependencies (topological order is maintained even in dry run)" time="0.
|
|
240
|
+
<testcase classname="tests/integration-tests/dryRun.test.ts" name="Integration: Dry Run > should respect dependencies (topological order is maintained even in dry run)" time="0.000445522">
|
|
235
241
|
</testcase>
|
|
236
242
|
</testsuite>
|
|
237
|
-
<testsuite name="tests/integration-tests/error-handling.test.ts" timestamp="2026-01-
|
|
238
|
-
<testcase classname="tests/integration-tests/error-handling.test.ts" name="Integration: Error Handling > Scenario 3: Task failure and downstream skipping" time="0.
|
|
243
|
+
<testsuite name="tests/integration-tests/error-handling.test.ts" timestamp="2026-01-21T01:05:21.382Z" hostname="runnervmmtnos" tests="3" failures="0" errors="0" skipped="0" time="0.006723761">
|
|
244
|
+
<testcase classname="tests/integration-tests/error-handling.test.ts" name="Integration: Error Handling > Scenario 3: Task failure and downstream skipping" time="0.00317888">
|
|
239
245
|
</testcase>
|
|
240
|
-
<testcase classname="tests/integration-tests/error-handling.test.ts" name="Integration: Error Handling > Scenario 10: Circular dependency detection" time="0.
|
|
246
|
+
<testcase classname="tests/integration-tests/error-handling.test.ts" name="Integration: Error Handling > Scenario 10: Circular dependency detection" time="0.001716838">
|
|
241
247
|
</testcase>
|
|
242
|
-
<testcase classname="tests/integration-tests/error-handling.test.ts" name="Integration: Error Handling > Scenario 11: Missing dependency handling" time="0.
|
|
248
|
+
<testcase classname="tests/integration-tests/error-handling.test.ts" name="Integration: Error Handling > Scenario 11: Missing dependency handling" time="0.000324202">
|
|
243
249
|
</testcase>
|
|
244
250
|
</testsuite>
|
|
245
|
-
<testsuite name="tests/integration-tests/stress.test.ts" timestamp="2026-01-
|
|
246
|
-
<testcase classname="tests/integration-tests/stress.test.ts" name="Integration: Stress Tests > Scenario 5: Large graph execution (e.g., 20+ nodes)" time="0.
|
|
251
|
+
<testsuite name="tests/integration-tests/stress.test.ts" timestamp="2026-01-21T01:05:21.383Z" hostname="runnervmmtnos" tests="1" failures="0" errors="0" skipped="0" time="0.007818362">
|
|
252
|
+
<testcase classname="tests/integration-tests/stress.test.ts" name="Integration: Stress Tests > Scenario 5: Large graph execution (e.g., 20+ nodes)" time="0.005863705">
|
|
247
253
|
</testcase>
|
|
248
254
|
</testsuite>
|
|
249
|
-
<testsuite name="tests/strategies/RetryingExecutionStrategy.test.ts" timestamp="2026-01-
|
|
250
|
-
<testcase classname="tests/strategies/RetryingExecutionStrategy.test.ts" name="RetryingExecutionStrategy > should execute successfully without retry if task succeeds" time="0.
|
|
255
|
+
<testsuite name="tests/strategies/RetryingExecutionStrategy.test.ts" timestamp="2026-01-21T01:05:21.383Z" hostname="runnervmmtnos" tests="9" failures="0" errors="0" skipped="0" time="0.019637529">
|
|
256
|
+
<testcase classname="tests/strategies/RetryingExecutionStrategy.test.ts" name="RetryingExecutionStrategy > should execute successfully without retry if task succeeds" time="0.00569045">
|
|
251
257
|
</testcase>
|
|
252
|
-
<testcase classname="tests/strategies/RetryingExecutionStrategy.test.ts" name="RetryingExecutionStrategy > should execute successfully without retry if task has no retry config" time="0.
|
|
258
|
+
<testcase classname="tests/strategies/RetryingExecutionStrategy.test.ts" name="RetryingExecutionStrategy > should execute successfully without retry if task has no retry config" time="0.000672539">
|
|
253
259
|
</testcase>
|
|
254
|
-
<testcase classname="tests/strategies/RetryingExecutionStrategy.test.ts" name="RetryingExecutionStrategy > should retry task if it fails and has retry config (fixed backoff)" time="0.
|
|
260
|
+
<testcase classname="tests/strategies/RetryingExecutionStrategy.test.ts" name="RetryingExecutionStrategy > should retry task if it fails and has retry config (fixed backoff)" time="0.002146202">
|
|
255
261
|
</testcase>
|
|
256
|
-
<testcase classname="tests/strategies/RetryingExecutionStrategy.test.ts" name="RetryingExecutionStrategy > should fail after max attempts reached" time="0.
|
|
262
|
+
<testcase classname="tests/strategies/RetryingExecutionStrategy.test.ts" name="RetryingExecutionStrategy > should fail after max attempts reached" time="0.001020059">
|
|
257
263
|
</testcase>
|
|
258
|
-
<testcase classname="tests/strategies/RetryingExecutionStrategy.test.ts" name="RetryingExecutionStrategy > should use exponential backoff" time="0.
|
|
264
|
+
<testcase classname="tests/strategies/RetryingExecutionStrategy.test.ts" name="RetryingExecutionStrategy > should use exponential backoff" time="0.001269567">
|
|
259
265
|
</testcase>
|
|
260
|
-
<testcase classname="tests/strategies/RetryingExecutionStrategy.test.ts" name="RetryingExecutionStrategy > should handle cancellation during delay" time="0.
|
|
266
|
+
<testcase classname="tests/strategies/RetryingExecutionStrategy.test.ts" name="RetryingExecutionStrategy > should handle cancellation during delay" time="0.001664395">
|
|
261
267
|
</testcase>
|
|
262
|
-
<testcase classname="tests/strategies/RetryingExecutionStrategy.test.ts" name="RetryingExecutionStrategy > should handle cancellation before execution" time="0.
|
|
268
|
+
<testcase classname="tests/strategies/RetryingExecutionStrategy.test.ts" name="RetryingExecutionStrategy > should handle cancellation before execution" time="0.000719315">
|
|
263
269
|
</testcase>
|
|
264
|
-
<testcase classname="tests/strategies/RetryingExecutionStrategy.test.ts" name="RetryingExecutionStrategy > should propagate error if sleep throws non-abort error" time="0.
|
|
270
|
+
<testcase classname="tests/strategies/RetryingExecutionStrategy.test.ts" name="RetryingExecutionStrategy > should propagate error if sleep throws non-abort error" time="0.003423413">
|
|
265
271
|
</testcase>
|
|
266
|
-
<testcase classname="tests/strategies/RetryingExecutionStrategy.test.ts" name="RetryingExecutionStrategy > should handle cancellation if signal is aborted right before sleep (covering fast-fail in sleep)" time="0.
|
|
272
|
+
<testcase classname="tests/strategies/RetryingExecutionStrategy.test.ts" name="RetryingExecutionStrategy > should handle cancellation if signal is aborted right before sleep (covering fast-fail in sleep)" time="0.000799308">
|
|
267
273
|
</testcase>
|
|
268
274
|
</testsuite>
|
|
269
275
|
</testsuites>
|