Skip to content

Commit

Permalink
test: Increase serialization timeout in sqlite tests
Browse files Browse the repository at this point in the history
  • Loading branch information
dividedmind committed Jan 13, 2024
1 parent b7dcb28 commit 1fe7826
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion test/sqlite/index.js
Original file line number Diff line number Diff line change
Expand Up @@ -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();
}

Expand Down

0 comments on commit 1fe7826

Please sign in to comment.