testing/javascript: Enable some passing sync test cases

This commit is contained in:
Pekka Enberg
2025-08-06 09:25:22 +03:00
parent 185b7016dd
commit ba37e1dc9a

View File

@@ -415,7 +415,7 @@ test.skip("errors", async (t) => {
}
});
test.skip("Database.prepare() after close()", async (t) => {
test.serial("Database.prepare() after close()", async (t) => {
const db = t.context.db;
db.close();
t.throws(() => {
@@ -426,7 +426,7 @@ test.skip("Database.prepare() after close()", async (t) => {
});
});
test.skip("Database.exec() after close()", async (t) => {
test.serial("Database.exec() after close()", async (t) => {
const db = t.context.db;
db.close();
t.throws(() => {