From 1fe7826742056f9ca443751c44668ca7bd8adb0f Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Rafa=C5=82=20Rzepecki?= Date: Sat, 13 Jan 2024 19:36:07 +0100 Subject: [PATCH] test: Increase serialization timeout in sqlite tests --- test/sqlite/index.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/test/sqlite/index.js b/test/sqlite/index.js index c8696482..958e5629 100644 --- a/test/sqlite/index.js +++ b/test/sqlite/index.js @@ -69,7 +69,7 @@ async function main() { // because promisify already provides the completion callback to resolve the promise. // We test this case with no completion callback here wtihout promisifying them. db.run("SELECT 'Database.run without a completion callback'"); - await setTimeout(10); // to serialize the appmap + await setTimeout(50); // to serialize the appmap db.prepare("SELECT 'Statement.run without a completion callback'").run().finalize(); }