protocol/test/0x.js.ts
Leonid Logvinov 8360565431
Remove spaces
2017-05-24 13:48:13 +02:00

13 lines
335 B
TypeScript

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