aboutsummaryrefslogtreecommitdiff
path: root/test/bun.js/sql.test.ts
blob: 569841d7ed36e05d0ab5e06e2ced63e308ba6de0 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
import { expect, it, describe } from "bun:test";
import { database } from "bun:sql";

it("database", () => {
  database({
    host: "localhost",
    database: "test123",
    port: 8023,
  });
});