Skip to content

Commit

Permalink
fix tests
Browse files Browse the repository at this point in the history
  • Loading branch information
stevensJourney committed Nov 25, 2024
1 parent 3620769 commit a265ca5
Showing 1 changed file with 1 addition and 0 deletions.
1 change: 1 addition & 0 deletions packages/web/src/worker/db/WASQLiteDB.worker.ts
Original file line number Diff line number Diff line change
Expand Up @@ -26,6 +26,7 @@ const openWorkerConnection = async (options: WASQLiteOpenOptions): Promise<DBFun
const connection = new WASqliteConnection(options);
await connection.init();
return {
close: () => connection.close(),
execute: async (sql: string, params?: any[]) => {
const result = await connection.execute(sql, params);
// Remove array index accessor functions
Expand Down

0 comments on commit a265ca5

Please sign in to comment.