mirror of
https://github.com/Kaelio/ktx.git
synced 2026-06-10 08:05:14 +02:00
docs: document duckdb support
This commit is contained in:
parent
460c6fae63
commit
099c605dc5
11 changed files with 86 additions and 7 deletions
|
|
@ -152,6 +152,7 @@ describe('standalone example docs', () => {
|
|||
assert.match(contributing, /llm\/\s+# LLM client abstraction/);
|
||||
assert.match(contributing, /connector-bigquery\/\s+# BigQuery connector/);
|
||||
assert.match(contributing, /connector-clickhouse\/\s+# ClickHouse connector/);
|
||||
assert.match(contributing, /connector-duckdb\/\s+# DuckDB connector/);
|
||||
assert.match(contributing, /connector-mysql\/\s+# MySQL connector/);
|
||||
assert.match(contributing, /connector-postgres\/\s+# PostgreSQL connector/);
|
||||
assert.match(contributing, /connector-snowflake\/\s+# Snowflake connector/);
|
||||
|
|
@ -161,6 +162,12 @@ describe('standalone example docs', () => {
|
|||
assert.match(contributing, /ktx-daemon\/\s+# Daemon/);
|
||||
});
|
||||
|
||||
it('lists the DuckDB connector in the root package table', async () => {
|
||||
const readme = await readText('README.md');
|
||||
|
||||
assert.match(readme, /\| `packages\/connector-duckdb` \| DuckDB scan connector \|/);
|
||||
});
|
||||
|
||||
it('documents agent-facing CLI commands', async () => {
|
||||
const servingAgents = await readText('docs-site/content/docs/guides/serving-agents.mdx');
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue