diff options
author | fragosti <francesco.agosti93@gmail.com> | 2018-08-22 07:51:01 +0800 |
---|---|---|
committer | fragosti <francesco.agosti93@gmail.com> | 2018-08-22 07:51:01 +0800 |
commit | c905b20ce69d64711126bc31318e24f76deb05af (patch) | |
tree | 430366d3e0b3df24d09cae7689de55e3dce1a424 /packages | |
parent | f1ddbc93872fa48a1fa702159aa59b0dd8295242 (diff) | |
download | dexon-sol-tools-c905b20ce69d64711126bc31318e24f76deb05af.tar dexon-sol-tools-c905b20ce69d64711126bc31318e24f76deb05af.tar.gz dexon-sol-tools-c905b20ce69d64711126bc31318e24f76deb05af.tar.bz2 dexon-sol-tools-c905b20ce69d64711126bc31318e24f76deb05af.tar.lz dexon-sol-tools-c905b20ce69d64711126bc31318e24f76deb05af.tar.xz dexon-sol-tools-c905b20ce69d64711126bc31318e24f76deb05af.tar.zst dexon-sol-tools-c905b20ce69d64711126bc31318e24f76deb05af.zip |
Fix typo
Diffstat (limited to 'packages')
-rw-r--r-- | packages/connect/test/http_client_test.ts | 2 | ||||
-rw-r--r-- | packages/connect/test/orders_channel_factory_test.ts | 1 |
2 files changed, 2 insertions, 1 deletions
diff --git a/packages/connect/test/http_client_test.ts b/packages/connect/test/http_client_test.ts index ad1654765..5b564e97b 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 e4c4ce32f..29aa87c65 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'; |