Files
bknd/packages/sqlocal/test/base.test.ts
2025-03-15 14:40:41 +01:00

11 lines
250 B
TypeScript

import { describe, expect, it } from "vitest";
import { SQLocal } from "sqlocal";
describe("base", () => {
const { sql } = new SQLocal(":memory:");
it("works", async () => {
expect(await sql`SELECT 1`).toEqual([{ "1": 1 }]);
});
});