Repository URL to install this package:
|
Version:
0.0.2 ▾
|
const fetchGeolocation = require('../dist/index').default;
test('fetch geolocation', () => {
fetchGeolocation().then(geolocation => {
expect(geolocation.country_code).toBe('CH');
});
});