diff options
author | Fabio Berger <me@fabioberger.com> | 2017-05-26 23:47:00 +0800 |
---|---|---|
committer | Fabio Berger <me@fabioberger.com> | 2017-05-26 23:47:00 +0800 |
commit | a6da9cd07389b317624ad00a3cb73b75820687e1 (patch) | |
tree | a7e488b85e308b9cfa6e4dcd144bfaf2e9843062 /test | |
parent | 1d4a52fe15988fb8534c441c539f55dd5d18db1a (diff) | |
download | dexon-sol-tools-a6da9cd07389b317624ad00a3cb73b75820687e1.tar dexon-sol-tools-a6da9cd07389b317624ad00a3cb73b75820687e1.tar.gz dexon-sol-tools-a6da9cd07389b317624ad00a3cb73b75820687e1.tar.bz2 dexon-sol-tools-a6da9cd07389b317624ad00a3cb73b75820687e1.tar.lz dexon-sol-tools-a6da9cd07389b317624ad00a3cb73b75820687e1.tar.xz dexon-sol-tools-a6da9cd07389b317624ad00a3cb73b75820687e1.tar.zst dexon-sol-tools-a6da9cd07389b317624ad00a3cb73b75820687e1.zip |
Add missing return types
Diffstat (limited to 'test')
-rw-r--r-- | test/utils/blockchain_clean.ts | 4 | ||||
-rw-r--r-- | test/utils/rpc.ts | 4 |
2 files changed, 4 insertions, 4 deletions
diff --git a/test/utils/blockchain_clean.ts b/test/utils/blockchain_clean.ts index 6468dbec7..18b7e3a5b 100644 --- a/test/utils/blockchain_clean.ts +++ b/test/utils/blockchain_clean.ts @@ -7,10 +7,10 @@ export class BlockchainClean { this.rpc = new RPC(); } // TODO: Check if running on TestRPC or on actual node, if actual node, re-deploy contracts instead - public async setupAsync() { + public async setupAsync(): Promise<void> { this.snapshotId = await this.rpc.takeSnapshotAsync(); } - public async restoreAsync() { + public async restoreAsync(): Promise<void> { const didRevert = await this.rpc.revertSnapshotAsync(this.snapshotId); if (!didRevert) { throw new Error(`Snapshot with id #${this.snapshotId} failed to revert`); diff --git a/test/utils/rpc.ts b/test/utils/rpc.ts index b689a938c..e331fa6d4 100644 --- a/test/utils/rpc.ts +++ b/test/utils/rpc.ts @@ -26,7 +26,7 @@ export class RPC { const didRevert = await this.sendAsync(payload); return didRevert; } - private toPayload(method: string, params: any[] = []) { + private toPayload(method: string, params: any[] = []): string { const payload = JSON.stringify({ id: this.id, method, @@ -35,7 +35,7 @@ export class RPC { this.id += 1; return payload; } - private async sendAsync(payload: string) { + private async sendAsync(payload: string): Promise<any> { const opts = { method: 'POST', uri: `http://${this.host}:${this.port}`, |