fix(node) Unit tests hangs and don't exit (#396)

This commit is contained in:
gsilvestrin
2023-08-04 20:18:23 -07:00
committed by GitHub
parent bbfadfe58d
commit b69b1e3ec8
5 changed files with 41 additions and 3 deletions

View File

@@ -165,4 +165,8 @@ export class RemoteTable<T = number[]> implements Table<T> {
async delete (filter: string): Promise<void> {
throw new Error('Not implemented')
}
async close (): Promise<void> {
throw new Error('Not implemented')
}
}