mirror of
https://github.com/Kaelio/ktx.git
synced 2026-06-13 08:15:14 +02:00
test(ingest): supply explicit no-input schema scope in skip-llm setup (#287)
The "prints provider setup guidance when a skip-llm setup project runs ingest" test drives runKtxSetup in --no-input (inputMode: disabled) mode with a postgres warehouse but databaseSchemas: []. PR #286 changed the no-input contract to require an explicit database scope instead of auto-scanning, so setup now exits 1 and the test's first assertion (resolves.toBe(0)) fails. #286 updated setup-databases.test.ts but missed this runKtxSetup call in ingest.test.ts. Pass databaseSchemas: ['public'] to satisfy the new contract, matching #286's own test updates.
This commit is contained in:
parent
2877b85adc
commit
058051f1b9
1 changed files with 1 additions and 1 deletions
|
|
@ -271,7 +271,7 @@ describe('runKtxIngest', () => {
|
|||
databaseDrivers: ['postgres'],
|
||||
databaseConnectionId: 'warehouse',
|
||||
databaseUrl: 'env:WAREHOUSE_URL',
|
||||
databaseSchemas: [],
|
||||
databaseSchemas: ['public'],
|
||||
enableQueryHistory: true,
|
||||
skipDatabases: false,
|
||||
skipSources: true,
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue