aboutsummaryrefslogtreecommitdiffstats
path: root/test/utils/blockchain_lifecycle.ts
diff options
context:
space:
mode:
authorFabio Berger <me@fabioberger.com>2017-05-29 15:09:54 +0800
committerFabio Berger <me@fabioberger.com>2017-05-29 15:09:54 +0800
commit62cc3b919c73b7726793808e3b9631dba41cef28 (patch)
tree22c5f1728c56b09fa0e15e5e645c1f891224a6ee /test/utils/blockchain_lifecycle.ts
parent281b9eaa5d207d32ae38fbab25cbca83fe81efa1 (diff)
parentb897bdab79fe566ffc8c19c6ec9f1bb7260fa95e (diff)
downloaddexon-sol-tools-62cc3b919c73b7726793808e3b9631dba41cef28.tar
dexon-sol-tools-62cc3b919c73b7726793808e3b9631dba41cef28.tar.gz
dexon-sol-tools-62cc3b919c73b7726793808e3b9631dba41cef28.tar.bz2
dexon-sol-tools-62cc3b919c73b7726793808e3b9631dba41cef28.tar.lz
dexon-sol-tools-62cc3b919c73b7726793808e3b9631dba41cef28.tar.xz
dexon-sol-tools-62cc3b919c73b7726793808e3b9631dba41cef28.tar.zst
dexon-sol-tools-62cc3b919c73b7726793808e3b9631dba41cef28.zip
Merge branch 'master' of github.com:0xProject/0x.js
# Conflicts: # src/ts/0x.js.ts # src/ts/utils/utils.ts
Diffstat (limited to 'test/utils/blockchain_lifecycle.ts')
-rw-r--r--test/utils/blockchain_lifecycle.ts20
1 files changed, 20 insertions, 0 deletions
diff --git a/test/utils/blockchain_lifecycle.ts b/test/utils/blockchain_lifecycle.ts
new file mode 100644
index 000000000..68e169ac0
--- /dev/null
+++ b/test/utils/blockchain_lifecycle.ts
@@ -0,0 +1,20 @@
+import {RPC} from './rpc';
+
+export class BlockchainLifecycle {
+ private rpc: RPC;
+ private snapshotId: number;
+ constructor() {
+ this.rpc = new RPC();
+ }
+ // TODO: In order to run these tests on an actual node, we should check if we are running against
+ // TestRPC, if so, use snapshots, otherwise re-deploy contracts before every test
+ 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`);
+ }
+ }
+};