]> git.openstreetmap.org Git - nominatim-ui.git/blobdiff - test/search.js
Rebundle latest version
[nominatim-ui.git] / test / search.js
index 6d3420ba2dc218e7f98e1a6ee30dd5cb6f180b5b..c6e6059e579d819387e44d28cf8abcbf0c3dcbe8 100644 (file)
@@ -36,6 +36,11 @@ describe('Search Page', function () {
       assert.equal(await page.title(), 'Result for City of London | Nominatim Demo');
     });
 
+    it('should display the API request and debug URL', async function () {
+      let link_titles = await page.$$eval('#api-request a', links => links.map(l => l.innerHTML));
+      assert.deepEqual(link_titles, ['API request', 'debug output']);
+    });
+
     it('should display a map', async function () {
       await page.waitForSelector('#map');
       assert.equal((await page.$$('#map')).length, 1);