mirror of
https://github.com/tursodatabase/limbo.git
synced 2025-08-04 10:08:20 +00:00
bindings/javascript: Run tests in parallel
This commit is contained in:
parent
387b68fc06
commit
11d1dcf31a
1 changed files with 2 additions and 2 deletions
|
@ -2,12 +2,12 @@ import test from "ava";
|
|||
|
||||
import { Database } from "../index.js";
|
||||
|
||||
test.serial("Open in-memory database", async (t) => {
|
||||
test("Open in-memory database", async (t) => {
|
||||
const [db] = await connect(":memory:");
|
||||
t.is(db.memory, true);
|
||||
});
|
||||
|
||||
test.serial("Statement.get()", async (t) => {
|
||||
test("Statement.get()", async (t) => {
|
||||
const [db] = await connect(":memory:");
|
||||
const stmt = db.prepare("SELECT 1");
|
||||
const result = stmt.get();
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue