mirror of
https://github.com/shishantbiswas/bknd.git
synced 2026-03-16 12:37:20 +00:00
12 lines
449 B
TypeScript
12 lines
449 B
TypeScript
import { nodeSqlite } from "./NodeSqliteConnection";
|
|
import { DatabaseSync } from "node:sqlite";
|
|
import { connectionTestSuite } from "data/connection/connection-test-suite";
|
|
import { describe, test, expect } from "vitest";
|
|
|
|
describe("NodeSqliteConnection", () => {
|
|
connectionTestSuite({ describe, test, expect } as any, {
|
|
makeConnection: () => nodeSqlite({ database: new DatabaseSync(":memory:") }),
|
|
rawDialectDetails: [],
|
|
});
|
|
});
|