blob: 18b7e3a5b6c00fd77c032da8f309b2e290af5780 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
|
import {RPC} from './rpc';
export class BlockchainClean {
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 setupAsync(): Promise<void> {
this.snapshotId = await this.rpc.takeSnapshotAsync();
}
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`);
}
}
};
|