Fix CI smoke and artifact checks

This commit is contained in:
Andrey Avtomonov 2026-05-13 13:24:46 +02:00
parent 6843f40742
commit 87d499ea79
6 changed files with 8 additions and 18 deletions

View file

@ -120,7 +120,7 @@ describe('standalone local warehouse example', () => {
]);
expect(ingest).toMatchObject({ code: 1, stdout: '' });
expect(ingest.stderr).toContain(
'ktx dev ingest run requires llm.provider.backend: anthropic, vertex, or gateway, or an injected agentRunner',
'ktx ingest run requires llm.provider.backend: anthropic, vertex, or gateway, or an injected agentRunner',
);
}, 30_000);

View file

@ -182,7 +182,7 @@ describe('standalone built ktx CLI smoke', () => {
]);
expect(run).toMatchObject({ code: 1, stdout: '' });
expect(run.stderr).toContain(
'ktx dev ingest run requires llm.provider.backend: anthropic, vertex, or gateway, or an injected agentRunner',
'ktx ingest run requires llm.provider.backend: anthropic, vertex, or gateway, or an injected agentRunner',
);
});