aboutsummaryrefslogblamecommitdiffstats
path: root/test/0x.js.ts
blob: 65475bf32f51c17e4fc0a83ea95cef48ddbf10f5 (plain) (tree)
1
2
3
4
5
6
7
8
9
10
11
12
                                       
                            









                                                             
import {ZeroEx} from '../src/ts/0x.js';
import {expect} from 'chai';
import 'mocha';

describe('ZeroEx library', () => {
    describe('#verifySignature', () => {
        it('should return undefined', () => {
            const zeroEx = new ZeroEx();
            expect(zeroEx.verifySignature()).to.be.undefined;
        });
    });
});