aboutsummaryrefslogblamecommitdiffstats
path: root/test/utils/blockchain_lifecycle.ts
blob: f7342b68093ee55ac82e28e4cc0720033191d949 (plain) (tree)
1
2
3
4
5
6
7
8
9

                          
                                  





                                                                                                       
                                              

                                                             
                                               





                                                                                     
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`);
        }
    }
};