Closed mmoanis closed 6 years ago
For example t.ok(cities[0].name, 'cities have a lat')
t.ok(cities[0].name, 'cities have a lat')
Shouldn't this be t.ok(cities[0].lat, 'cities have a lat')
t.ok(cities[0].lat, 'cities have a lat')
Same for cities[0].country and cities[0].lon.
cities[0].country
cities[0].lon
For example
t.ok(cities[0].name, 'cities have a lat')
Shouldn't this be
t.ok(cities[0].lat, 'cities have a lat')
Same for
cities[0].country
andcities[0].lon
.