mirror of
https://github.com/aljazceru/turso.git
synced 2026-01-04 17:04:18 +01:00
bindings/javascript: Run tests in parallel
This commit is contained in:
@@ -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();
|
||||
|
||||
Reference in New Issue
Block a user