mirror of
https://github.com/aljazceru/turso.git
synced 2025-12-19 01:24:20 +01:00
testing/javascript: Enable some passing sync test cases
This commit is contained in:
@@ -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;
|
const db = t.context.db;
|
||||||
db.close();
|
db.close();
|
||||||
t.throws(() => {
|
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;
|
const db = t.context.db;
|
||||||
db.close();
|
db.close();
|
||||||
t.throws(() => {
|
t.throws(() => {
|
||||||
|
|||||||
Reference in New Issue
Block a user