diff options
author | Fabio Berger <me@fabioberger.com> | 2017-05-27 00:01:54 +0800 |
---|---|---|
committer | Fabio Berger <me@fabioberger.com> | 2017-05-27 00:01:54 +0800 |
commit | d5feb5fc792c54bcf4a3a029ddc404e95a5df166 (patch) | |
tree | 92cafe86182dd65063a8182a730c6ecea7c61253 /test/utils/blockchain_lifecycle.ts | |
parent | badd4a98e9f604b81cff1d6d52086b63d500bd64 (diff) | |
download | dexon-sol-tools-d5feb5fc792c54bcf4a3a029ddc404e95a5df166.tar dexon-sol-tools-d5feb5fc792c54bcf4a3a029ddc404e95a5df166.tar.gz dexon-sol-tools-d5feb5fc792c54bcf4a3a029ddc404e95a5df166.tar.bz2 dexon-sol-tools-d5feb5fc792c54bcf4a3a029ddc404e95a5df166.tar.lz dexon-sol-tools-d5feb5fc792c54bcf4a3a029ddc404e95a5df166.tar.xz dexon-sol-tools-d5feb5fc792c54bcf4a3a029ddc404e95a5df166.tar.zst dexon-sol-tools-d5feb5fc792c54bcf4a3a029ddc404e95a5df166.zip |
rename BlockClean to BlockchainLifecycle and setupAsync to startAsync, restoreAsync to revertAsync
Diffstat (limited to 'test/utils/blockchain_lifecycle.ts')
-rw-r--r-- | test/utils/blockchain_lifecycle.ts | 19 |
1 files changed, 19 insertions, 0 deletions
diff --git a/test/utils/blockchain_lifecycle.ts b/test/utils/blockchain_lifecycle.ts new file mode 100644 index 000000000..f7342b680 --- /dev/null +++ b/test/utils/blockchain_lifecycle.ts @@ -0,0 +1,19 @@ +import {RPC} from './rpc'; + +export class BlockchainLifecycle { + private rpc: RPC; + private snapshotId: number; + constructor() { + this.rpc = new RPC(); + } + // TODO: Check if running on TestRPC or on actual node, if actual node, re-deploy contracts instead + public async startAsync(): Promise<void> { + this.snapshotId = await this.rpc.takeSnapshotAsync(); + } + public async revertAsync(): Promise<void> { + const didRevert = await this.rpc.revertSnapshotAsync(this.snapshotId); + if (!didRevert) { + throw new Error(`Snapshot with id #${this.snapshotId} failed to revert`); + } + } +}; |