0

Remove warning if geoip test is skipped

This commit is contained in:
Gabe Kangas 2021-11-11 12:43:21 -08:00
parent 1099a3c3ba
commit b9107eab12

View File

@ -119,8 +119,6 @@ test('verify user list is populated', async (done) => {
// Optionally, if GeoIP is configured, check the location property.
if (fs.existsSync('../../../data/GeoLite2-City.mmdb')) {
expect(response.body[0].geo.regionName).toBe('Localhost');
} else {
console.warn('GeoIP Data is not supplied. Skipping test. See https://owncast.online/docs/viewers/');
}
ws.close();
@ -134,5 +132,4 @@ test('verify user list is populated', async (done) => {
ws.on('close', function incoming(data) {
done();
});
});