Archived
1
0

Add test for disposing active evaluations

This commit is contained in:
Asher
2019-02-19 10:42:32 -06:00
parent 4a80bcb42c
commit 2889b3fede
4 changed files with 31 additions and 16 deletions

View File

@ -48,6 +48,10 @@ export class Client {
});
}
public dispose(): void {
this.connection.close();
}
public get initData(): Promise<InitData> {
return this.initDataPromise;
}