mirror of
https://github.com/bknd-io/bknd/
synced 2026-08-02 16:16:02 +00:00
13 lines
489 B
TypeScript
13 lines
489 B
TypeScript
import { connectionTestSuite } from "../connection-test-suite";
|
|
import { LibsqlConnection } from "./LibsqlConnection";
|
|
import { bunTestRunner } from "adapter/bun/test";
|
|
import { describe } from "bun:test";
|
|
import { createClient } from "@libsql/client";
|
|
|
|
describe("LibsqlConnection", () => {
|
|
connectionTestSuite(bunTestRunner, {
|
|
makeConnection: () => new LibsqlConnection(createClient({ url: ":memory:" })),
|
|
rawDialectDetails: ["rowsAffected", "lastInsertRowid"],
|
|
});
|
|
});
|