]> git.openstreetmap.org Git - nominatim-ui.git/blobdiff - test/details.js
version 3.6.1
[nominatim-ui.git] / test / details.js
index dc907d0b01cca27ad360583531a34d19722f60ee..377a1fdfe5be3d77dc95ebdefdc086e4f55d7f07 100644 (file)
@@ -66,14 +66,14 @@ 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 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;
@@ -155,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'));
       }