Add initial testing config and a dummy test

This commit is contained in:
Leonid Logvinov
2017-05-24 13:37:54 +02:00
parent a3ff1e42bf
commit c50b32ee3f
2 changed files with 20 additions and 2 deletions

12
test/0x.js.ts Normal file
View File

@@ -0,0 +1,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;
});
});
});