feat: persist blocked executor jobs
This commit is contained in:
@@ -40,7 +40,13 @@ test('orchestrator HTTP API exposes health and authenticated run endpoints', asy
|
||||
|
||||
const health = await fetch(`${server.baseUrl}/health`);
|
||||
assert.equal(health.status, 200);
|
||||
assert.equal((await health.json()).execution, 'observe-only');
|
||||
const healthBody = await health.json();
|
||||
assert.equal(healthBody.execution, 'observe-only');
|
||||
assert.equal(healthBody.executorGateway.executionEnabled, false);
|
||||
assert.deepEqual(healthBody.executorGateway.store, {
|
||||
kind: 'memory',
|
||||
durable: false,
|
||||
});
|
||||
const ready = await fetch(`${server.baseUrl}/ready`);
|
||||
assert.equal(ready.status, 200);
|
||||
assert.equal((await ready.json()).ready, true);
|
||||
|
||||
Reference in New Issue
Block a user