mirror of
https://github.com/Kaelio/ktx.git
synced 2026-06-19 08:28:06 +02:00
11 lines
528 B
TypeScript
11 lines
528 B
TypeScript
import { describe, expect, it } from 'vitest';
|
|
import * as connector from './index.js';
|
|
|
|
describe('@ktx/connector-bigquery exports', () => {
|
|
it('exports public connector, dialect, and introspection APIs', () => {
|
|
expect(connector.KtxBigQueryDialect).toBeTypeOf('function');
|
|
expect(connector.KtxBigQueryScanConnector).toBeTypeOf('function');
|
|
expect(connector.bigQueryConnectionConfigFromConfig).toBeTypeOf('function');
|
|
expect(connector.createBigQueryLiveDatabaseIntrospection).toBeTypeOf('function');
|
|
});
|
|
});
|