mirror of
https://github.com/shishantbiswas/bknd.git
synced 2026-03-16 04:27:21 +00:00
12 lines
428 B
TypeScript
12 lines
428 B
TypeScript
import { connectionTestSuite } from "../connection-test-suite";
|
|
import { LibsqlConnection } from "./LibsqlConnection";
|
|
import { bunTestRunner } from "adapter/bun/test";
|
|
import { describe } from "bun:test";
|
|
|
|
describe("LibsqlConnection", () => {
|
|
connectionTestSuite(bunTestRunner, {
|
|
makeConnection: () => new LibsqlConnection({ url: ":memory:" }),
|
|
rawDialectDetails: ["rowsAffected", "lastInsertRowid"],
|
|
});
|
|
});
|