javascript: Fix Statement.get() for boundary values

This commit is contained in:
Pekka Enberg
2025-08-19 14:00:01 +03:00
parent e99f189344
commit 6b59bcd51e
4 changed files with 30 additions and 4 deletions

View File

@@ -334,7 +334,7 @@ test.serial("Statement.get() [raw]", async (t) => {
t.deepEqual(stmt.raw().get(1), [1, "Alice", "alice@example.org"]);
});
test.skip("Statement.get() values", async (t) => {
test.serial("Statement.get() values", async (t) => {
const db = t.context.db;
const stmt = db.prepare("SELECT ?").raw();