@auto-engineer/pipeline 1.28.0 → 1.30.0
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/.turbo/turbo-build.log +1 -1
- package/.turbo/turbo-test.log +5 -5
- package/.turbo/turbo-type-check.log +1 -1
- package/CHANGELOG.md +63 -0
- package/dist/src/builder/define.d.ts +8 -1
- package/dist/src/builder/define.d.ts.map +1 -1
- package/dist/src/builder/define.js +35 -0
- package/dist/src/builder/define.js.map +1 -1
- package/dist/src/core/descriptors.d.ts +7 -2
- package/dist/src/core/descriptors.d.ts.map +1 -1
- package/dist/src/index.d.ts +2 -2
- package/dist/src/index.d.ts.map +1 -1
- package/dist/src/index.js.map +1 -1
- package/dist/src/runtime/pipeline-runtime.js +1 -1
- package/dist/src/runtime/pipeline-runtime.js.map +1 -1
- package/dist/src/runtime/settled-tracker.d.ts +1 -1
- package/dist/src/runtime/settled-tracker.d.ts.map +1 -1
- package/dist/src/runtime/settled-tracker.js.map +1 -1
- package/dist/src/server/pipeline-server.d.ts.map +1 -1
- package/dist/src/server/pipeline-server.js +8 -6
- package/dist/src/server/pipeline-server.js.map +1 -1
- package/dist/src/testing/fixtures/kanban-full.pipeline.d.ts.map +1 -1
- package/dist/src/testing/fixtures/kanban-full.pipeline.js +0 -8
- package/dist/src/testing/fixtures/kanban-full.pipeline.js.map +1 -1
- package/dist/src/testing/fixtures/kanban-todo.config.d.ts.map +1 -1
- package/dist/src/testing/fixtures/kanban-todo.config.js +0 -1
- package/dist/src/testing/fixtures/kanban-todo.config.js.map +1 -1
- package/dist/src/testing/fixtures/kanban.pipeline.d.ts.map +1 -1
- package/dist/src/testing/fixtures/kanban.pipeline.js +0 -2
- package/dist/src/testing/fixtures/kanban.pipeline.js.map +1 -1
- package/dist/tsconfig.tsbuildinfo +1 -1
- package/ketchup-plan.md +4 -0
- package/package.json +3 -3
- package/scripts/run-kanban-e2e.ts +3 -3
- package/scripts/start-server.ts +1 -1
- package/src/builder/define.specs.ts +82 -5
- package/src/builder/define.ts +52 -1
- package/src/core/descriptors.ts +8 -2
- package/src/index.ts +2 -0
- package/src/plugins/plugin-loader.specs.ts +0 -7
- package/src/runtime/pipeline-runtime.ts +1 -1
- package/src/runtime/settled-tracker.ts +2 -2
- package/src/server/full-orchestration.e2e.specs.ts +4 -16
- package/src/server/pipeline-server.e2e.specs.ts +27 -33
- package/src/server/pipeline-server.specs.ts +41 -6
- package/src/server/pipeline-server.ts +10 -6
- package/src/testing/fixtures/kanban-full.pipeline.specs.ts +0 -24
- package/src/testing/fixtures/kanban-full.pipeline.ts +0 -14
- package/src/testing/fixtures/kanban-todo.config.ts +0 -1
- package/src/testing/fixtures/kanban.pipeline.specs.ts +0 -1
- package/src/testing/fixtures/kanban.pipeline.ts +0 -7
- package/src/testing/kanban-todo.e2e.specs.ts +1 -1
- package/src/testing/real-execution.e2e.specs.ts +6 -6
|
@@ -110,18 +110,18 @@ describe('Real Execution E2E', () => {
|
|
|
110
110
|
|
|
111
111
|
describe('Full Pipeline Execution', () => {
|
|
112
112
|
it(
|
|
113
|
-
'should execute
|
|
113
|
+
'should execute GenerateServer and trigger full pipeline chain',
|
|
114
114
|
async () => {
|
|
115
|
-
console.log('\n=== Dispatching
|
|
115
|
+
console.log('\n=== Dispatching GenerateServer ===');
|
|
116
116
|
console.log(`Target directory: ${EXAMPLE_DIR}`);
|
|
117
117
|
|
|
118
118
|
const dispatchResponse = await fetch(`http://localhost:${server.port}/command`, {
|
|
119
119
|
method: 'POST',
|
|
120
120
|
headers: { 'Content-Type': 'application/json' },
|
|
121
121
|
body: JSON.stringify({
|
|
122
|
-
type: '
|
|
122
|
+
type: 'GenerateServer',
|
|
123
123
|
data: {
|
|
124
|
-
|
|
124
|
+
destination: EXAMPLE_DIR,
|
|
125
125
|
},
|
|
126
126
|
}),
|
|
127
127
|
});
|
|
@@ -184,8 +184,8 @@ describe('Real Execution E2E', () => {
|
|
|
184
184
|
|
|
185
185
|
expect(events.length).toBeGreaterThan(0);
|
|
186
186
|
|
|
187
|
-
const
|
|
188
|
-
expect(
|
|
187
|
+
const hasServerGenerated = events.some((e) => e.message.type === 'ServerGenerated');
|
|
188
|
+
expect(hasServerGenerated).toBe(true);
|
|
189
189
|
},
|
|
190
190
|
10 * 60 * 1000,
|
|
191
191
|
);
|