diff --git a/testing/javascript/__test__/sync.test.js b/testing/javascript/__test__/sync.test.js index d71e37ba4..7ef8cf001 100644 --- a/testing/javascript/__test__/sync.test.js +++ b/testing/javascript/__test__/sync.test.js @@ -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(() => {