X-Git-Url: https://git.openstreetmap.org/nominatim-ui.git/blobdiff_plain/c2a3d9e360d60b15cbf71840c2307fb3e0a3ea33..299cd3166ec51bcfddacf4133f21439b93547bd0:/test/details.js diff --git a/test/details.js b/test/details.js index 2d1094d..dc907d0 100644 --- a/test/details.js +++ b/test/details.js @@ -66,6 +66,12 @@ describe('Details Page', function () { assert.strictEqual((await page.$$eval(`a[href="${url}"]`, (links) => links.length)), 2); }); + 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); + }); + // Reverse-only installation have no search index, therefore no keywords if (!reverse_only) { it('should change url and add new header on clicking display keywords', async function () {