aboutsummaryrefslogtreecommitdiffstats
path: root/test/utils/blockchain_clean.ts
blob: 6468dbec7e9913e3f675f6a95c3da4c8a9887020 (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() {
        this.snapshotId = await this.rpc.takeSnapshotAsync();
    }
    public async restoreAsync() {
        const didRevert = await this.rpc.revertSnapshotAsync(this.snapshotId);
        if (!didRevert) {
            throw new Error(`Snapshot with id #${this.snapshotId} failed to revert`);
        }
    }
};