Skip to content

Commit a265ca5

Browse files
fix tests
1 parent 3620769 commit a265ca5

File tree

1 file changed

+1
-0
lines changed

1 file changed

+1
-0
lines changed

packages/web/src/worker/db/WASQLiteDB.worker.ts

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -26,6 +26,7 @@ const openWorkerConnection = async (options: WASQLiteOpenOptions): Promise<DBFun
2626
const connection = new WASqliteConnection(options);
2727
await connection.init();
2828
return {
29+
close: () => connection.close(),
2930
execute: async (sql: string, params?: any[]) => {
3031
const result = await connection.execute(sql, params);
3132
// Remove array index accessor functions

0 commit comments

Comments
 (0)