We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent b4c67a0 commit e37242bCopy full SHA for e37242b
test/components/GoogleMap.spec.js
@@ -163,12 +163,16 @@ describe('Components', () => {
163
// TODO add gmap api mock
164
// defaultCenter={{lat: 59.938043, lng: 30.337157}}
165
// defaultZoom={9}
166
- apiKey={API_KEY}
+ bootstrapURLKeys={{
167
+ key: API_KEY,
168
+ }}
169
googleMapLoader={asyncSpy}
170
/>
171
);
172
173
expect(spy.calls.length).toEqual(1);
- expect(spy.calls[0].arguments[0]).toEqual(API_KEY);
174
+ expect(spy.calls[0].arguments[0]).toEqual({
175
176
+ });
177
});
178
0 commit comments