@@ -4,7 +4,7 @@ import thunk from 'redux-thunk'
4
4
import nock from 'nock'
5
5
import { initialState } from '../reducers/memberSearch.js'
6
6
import { initialState as searchTermInitialState } from '../reducers/searchTerm.js'
7
- import { INTERNAL_API } from '../config/constants.js'
7
+ import { V3_API } from '../config/constants.js'
8
8
9
9
import {
10
10
loadMemberSearch , checkIfSearchTermIsATag ,
@@ -35,15 +35,15 @@ describe('loadMemberSearch Actions:', () => {
35
35
const topMemberResults = [ 'topMember1' , 'topMember2' ]
36
36
37
37
const mockSuccessfulTagAPICall = ( ) => {
38
- nock ( INTERNAL_API )
38
+ nock ( V3_API )
39
39
. get ( / \/ t a g s / )
40
40
. reply ( 200 , { result : {
41
41
content : [ mockTag ]
42
42
} } )
43
43
}
44
44
45
45
const mockSuccessfulUsernameMatchesAPICall = ( ) => {
46
- nock ( INTERNAL_API )
46
+ nock ( V3_API )
47
47
. get ( / \/ m e m b e r s \/ _ s e a r c h / )
48
48
. reply ( 200 , { result : {
49
49
content : usernameMatchResults ,
@@ -52,7 +52,7 @@ describe('loadMemberSearch Actions:', () => {
52
52
}
53
53
54
54
const mockSuccessfulTopMembersAPICall = ( ) => {
55
- nock ( INTERNAL_API )
55
+ nock ( V3_API )
56
56
. get ( / \/ l e a d e r b o a r d s \/ \? f i l t e r / )
57
57
. reply ( 200 , { result : { content : topMemberResults } } )
58
58
}
@@ -71,7 +71,7 @@ describe('loadMemberSearch Actions:', () => {
71
71
}
72
72
} )
73
73
74
- nock ( INTERNAL_API )
74
+ nock ( V3_API )
75
75
. get ( / \/ t a g s / )
76
76
. reply ( 200 , { result : { content : [ ] } } )
77
77
@@ -166,7 +166,7 @@ describe('loadMemberSearch Actions:', () => {
166
166
it ( 'calls memberSearchFailure when the request fails' , ( ) => {
167
167
const store = mockStore ( { memberSearch : initialState } )
168
168
169
- nock ( INTERNAL_API )
169
+ nock ( V3_API )
170
170
. get ( / \/ t a g s / )
171
171
. reply ( 500 , 'failure' )
172
172
@@ -209,7 +209,7 @@ describe('loadMemberSearch Actions:', () => {
209
209
it ( `dispatches ${ MEMBER_SEARCH_FAILURE } when the request fails` , ( ) => {
210
210
const store = mockStore ( { memberSearch : initialState } )
211
211
212
- nock ( INTERNAL_API )
212
+ nock ( V3_API )
213
213
. get ( / \/ m e m b e r s \/ _ s e a r c h / )
214
214
. reply ( 500 , 'failure' )
215
215
@@ -247,7 +247,7 @@ describe('loadMemberSearch Actions:', () => {
247
247
it ( 'calls memberSearchFailure when the request fails' , ( ) => {
248
248
const store = mockStore ( { memberSearch : initialState } )
249
249
250
- nock ( INTERNAL_API )
250
+ nock ( V3_API )
251
251
. get ( / \/ l e a d e r b o a r d s .* / )
252
252
. reply ( 500 , 'failure' )
253
253
0 commit comments