This commit is contained in:
fragosti 2018-08-21 16:51:01 -07:00
parent f1ddbc9387
commit c905b20ce6
2 changed files with 2 additions and 1 deletions

View File

@ -173,7 +173,7 @@ describe('HttpClient', () => {
const feeRecipients = await relayerClient.getFeeRecipientsAsync();
expect(feeRecipients).to.be.deep.equal(feeRecipientsResponse);
});
it('gets fee reciipient with specified page options', async () => {
it('gets fee recipient with specified page options', async () => {
const urlWithQuery = `${url}?networkId=42&page=3&perPage=50`;
fetchMock.get(urlWithQuery, feeRecipientsResponseJSON);
const pagedRequestOptions = {

View File

@ -1,6 +1,7 @@
import * as chai from 'chai';
import * as dirtyChai from 'dirty-chai';
import * as _ from 'lodash';
import 'mocha';
import { ordersChannelFactory } from '../src/orders_channel_factory';