X-Git-Url: https://git.openstreetmap.org./nominatim-ui.git/blobdiff_plain/a842f6ab66cb2ae6024ea26675fe2e01407ab0b7..299cd3166ec51bcfddacf4133f21439b93547bd0:/test/api_errors.js?ds=sidebyside diff --git a/test/api_errors.js b/test/api_errors.js index 05b2b35..365126e 100644 --- a/test/api_errors.js +++ b/test/api_errors.js @@ -6,7 +6,7 @@ describe('Nominatim API errors', function () { describe('HTTP 503 - service unavailable', function () { before(async function () { page = await browser.newPage(); - await page.goto('http://localhost:9999/search.html?q=london&mock_http_status=503'); + await page.goto('http://localhost:9999/search.html?q=london&mock_api_error=fetch'); }); after(async function () { @@ -17,7 +17,6 @@ describe('Nominatim API errors', function () { await page.waitForSelector('#error'); let message = await page.$eval('#error', el => el.textContent); - assert.ok(message.includes('/status/503')); assert.ok(message.includes('Error fetching data from')); }); }); @@ -25,7 +24,7 @@ describe('Nominatim API errors', function () { describe('HTTP 200 - JSON parsing fails', function () { before(async function () { page = await browser.newPage(); - await page.goto('http://localhost:9999/search.html?q=london&mock_http_status=200'); + await page.goto('http://localhost:9999/search.html?q=london&mock_api_error=parse'); }); after(async function () { @@ -36,7 +35,6 @@ describe('Nominatim API errors', function () { await page.waitForSelector('#error'); let message = await page.$eval('#error', el => el.textContent); - assert.ok(message.includes('/status/200')); assert.ok(message.includes('Error parsing JSON data from')); }); });