From c905b20ce69d64711126bc31318e24f76deb05af Mon Sep 17 00:00:00 2001 From: fragosti Date: Tue, 21 Aug 2018 16:51:01 -0700 Subject: [PATCH] Fix typo --- packages/connect/test/http_client_test.ts | 2 +- packages/connect/test/orders_channel_factory_test.ts | 1 + 2 files changed, 2 insertions(+), 1 deletion(-) diff --git a/packages/connect/test/http_client_test.ts b/packages/connect/test/http_client_test.ts index ad16547653..5b564e97bc 100644 --- a/packages/connect/test/http_client_test.ts +++ b/packages/connect/test/http_client_test.ts @@ -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 = { diff --git a/packages/connect/test/orders_channel_factory_test.ts b/packages/connect/test/orders_channel_factory_test.ts index e4c4ce32f3..29aa87c65d 100644 --- a/packages/connect/test/orders_channel_factory_test.ts +++ b/packages/connect/test/orders_channel_factory_test.ts @@ -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';