X-Git-Url: https://git.openstreetmap.org./nominatim-ui.git/blobdiff_plain/16f28ac4d03efe2e5e53766f26a6d6b0e4974c5f..200f60bc3a38adc7ae5e9acbbbf0565b715bdb80:/test/details.js diff --git a/test/details.js b/test/details.js index 9ff5b28..377a1fd 100644 --- a/test/details.js +++ b/test/details.js @@ -66,8 +66,14 @@ describe('Details Page', function () { assert.strictEqual((await page.$$eval(`a[href="${url}"]`, (links) => links.length)), 2); }); - // Reverse-only installation have no search index, therefor no keywords + // Reverse-only installation have no search index, therefore no keywords if (!reverse_only) { + it('should have a link to postcode which includes country code', async function () { + const url = 'search.html?postalcode=9490&country=li'; + + assert.strictEqual((await page.$$eval(`a[href="${url}"]`, (links) => links.length)), 1); + }); + it('should change url and add new header on clicking display keywords', async function () { let current_url; let display_headers; @@ -91,7 +97,7 @@ describe('Details Page', function () { } - it('should support case-insenstive search, can navigate to new page', async function () { + it('should support case-insensitive search, can navigate to new page', async function () { let input_field = await page.$('input[type=edit]'); await input_field.click({ clickCount: 3 }); await input_field.type('w375257537'); @@ -149,7 +155,7 @@ describe('Details Page', function () { it('should display No Name, no keywords, no hierarchy', async function () { let page_content = await page.$eval('body', el => el.textContent); - assert.ok(page_content.includes('Name No Name')); + assert.ok(page_content.includes('NameNo Name')); if (!process.env.REVERSE_ONLY) { assert.ok(page_content.includes('Place has no keywords')); }