Skip to content
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.

Commit a0abad7

Browse files
committedOct 7, 2020
fix tests
1 parent 711dd9d commit a0abad7

File tree

4 files changed

+14
-1
lines changed

4 files changed

+14
-1
lines changed
 

‎__tests__/__snapshots__/index.js.snap

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -72,6 +72,8 @@ Object {
7272
"getReviewTypesInit": [Function],
7373
"getSkillTagsDone": [Function],
7474
"getSkillTagsInit": [Function],
75+
"getTechnologiesDone": [Function],
76+
"getTechnologiesInit": [Function],
7577
"getTypesDone": [Function],
7678
"getTypesInit": [Function],
7779
},

‎__tests__/actions/__snapshots__/lookup.js.snap

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -17,6 +17,8 @@ Object {
1717
"getReviewTypesInit": [Function],
1818
"getSkillTagsDone": [Function],
1919
"getSkillTagsInit": [Function],
20+
"getTechnologiesDone": [Function],
21+
"getTechnologiesInit": [Function],
2022
"getTypesDone": [Function],
2123
"getTypesInit": [Function],
2224
},

‎__tests__/reducers/__snapshots__/lookup.js.snap

Lines changed: 10 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -27,6 +27,7 @@ Object {
2727
"status": "APPROVED",
2828
},
2929
],
30+
"technologies": Array [],
3031
"types": Array [],
3132
}
3233
`;
@@ -58,6 +59,7 @@ Object {
5859
"status": "APPROVED",
5960
},
6061
],
62+
"technologies": Array [],
6163
"types": Array [],
6264
}
6365
`;
@@ -83,6 +85,7 @@ Object {
8385
"status": "APPROVED",
8486
},
8587
],
88+
"technologies": Array [],
8689
"types": Array [],
8790
}
8891
`;
@@ -108,6 +111,7 @@ Object {
108111
"status": "APPROVED",
109112
},
110113
],
114+
"technologies": Array [],
111115
"types": Array [],
112116
}
113117
`;
@@ -125,6 +129,7 @@ Object {
125129
"oses": Array [],
126130
"reviewTypes": Array [],
127131
"skillTags": Array [],
132+
"technologies": Array [],
128133
"types": Array [],
129134
}
130135
`;
@@ -156,6 +161,7 @@ Object {
156161
"status": "APPROVED",
157162
},
158163
],
164+
"technologies": Array [],
159165
"types": Array [],
160166
}
161167
`;
@@ -187,6 +193,7 @@ Object {
187193
"status": "APPROVED",
188194
},
189195
],
196+
"technologies": Array [],
190197
"types": Array [],
191198
}
192199
`;
@@ -212,6 +219,7 @@ Object {
212219
"status": "APPROVED",
213220
},
214221
],
222+
"technologies": Array [],
215223
"types": Array [],
216224
}
217225
`;
@@ -237,6 +245,7 @@ Object {
237245
"status": "APPROVED",
238246
},
239247
],
248+
"technologies": Array [],
240249
"types": Array [],
241250
}
242251
`;
@@ -254,6 +263,7 @@ Object {
254263
"oses": Array [],
255264
"reviewTypes": Array [],
256265
"skillTags": Array [],
266+
"technologies": Array [],
257267
"types": Array [],
258268
}
259269
`;

‎src/services/lookup.js

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,6 @@
44
* via API V3.
55
*/
66
import qs from 'qs';
7-
import fetch from 'isomorphic-fetch';
87
import { assign } from 'lodash';
98
import { getApiResponsePayload } from '../utils/tc';
109
import { getApi } from './api';

0 commit comments

Comments
 (0)
Please sign in to comment.