aboutsummaryrefslogtreecommitdiffstats
path: root/packages/dev-utils/test/blockchain_lifecycle_test.ts
blob: 3d7d2e0efa1bee161982b35346df7ca77915c428 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
import { Web3Wrapper } from '@0xproject/web3-wrapper';
import * as chai from 'chai';
import { BlockParamLiteral } from 'ethereum-types';
import 'make-promises-safe';
import 'mocha';

import { BlockchainLifecycle, web3Factory } from '../src';

const expect = chai.expect;

describe('BlockchainLifecycle tests', () => {
    const provider = web3Factory.getRpcProvider({ shouldUseInProcessGanache: true });
    const web3Wrapper = new Web3Wrapper(provider);
    const blockchainLifecycle = new BlockchainLifecycle(web3Wrapper);
    describe('#startAsync/revertAsync', () => {
        it('reverts changes in between', async () => {
            const blockNumberBefore = await web3Wrapper.getBlockNumberAsync();
            await blockchainLifecycle.startAsync();
            await web3Wrapper.mineBlockAsync();
            const blockNumberAfter = await web3Wrapper.getBlockNumberAsync();
            expect(blockNumberAfter).to.be.equal(blockNumberBefore + 1);
            await blockchainLifecycle.revertAsync();
            const blockNumberAfterRevert = await web3Wrapper.getBlockNumberAsync();
            expect(blockNumberAfterRevert).to.be.equal(blockNumberBefore);
        });
    });
});