diff options
author | 2023-01-02 21:05:56 -0800 | |
---|---|---|
committer | 2023-01-02 21:05:56 -0800 | |
commit | ea2b65d4834d864029299809fb23f40ba2a56f90 (patch) | |
tree | b178b1c6327ed9b450b8764b0c13dea63112ee55 /test/bun.js | |
parent | 80c2da73ef59f0170f1c92551c948a1b285da17c (diff) | |
download | bun-jarred/pg.tar.gz bun-jarred/pg.tar.zst bun-jarred/pg.zip |
Draw the owljarred/pg
Diffstat (limited to 'test/bun.js')
-rw-r--r-- | test/bun.js/sql.test.ts | 10 |
1 files changed, 10 insertions, 0 deletions
diff --git a/test/bun.js/sql.test.ts b/test/bun.js/sql.test.ts new file mode 100644 index 000000000..569841d7e --- /dev/null +++ b/test/bun.js/sql.test.ts @@ -0,0 +1,10 @@ +import { expect, it, describe } from "bun:test"; +import { database } from "bun:sql"; + +it("database", () => { + database({ + host: "localhost", + database: "test123", + port: 8023, + }); +}); |