Add initial testing config and a dummy test
This commit is contained in:
12
test/0x.js.ts
Normal file
12
test/0x.js.ts
Normal 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;
|
||||
});
|
||||
});
|
||||
});
|
Reference in New Issue
Block a user