]> git.openstreetmap.org Git - nominatim-ui.git/blobdiff - test/unit/helpers.js
Details page: Allow searching for negative OSM ids
[nominatim-ui.git] / test / unit / helpers.js
index ed57c03c95f862c1c68050533f49260c6184fbee..103f2212ea77baafd9ec2fd1f6bffd5d9432f8cf 100644 (file)
@@ -10,6 +10,7 @@ describe('Helpers', function () {
     assert.deepStrictEqual(identifyLinkInQuery('https://www.openstreetmap.org/relation/1234#map=11/41.2388/-8.3867'), ['R', 1234]);
     assert.deepStrictEqual(identifyLinkInQuery('n1234'), ['N', 1234]);
     assert.deepStrictEqual(identifyLinkInQuery('W1234'), ['W', 1234]);
+    assert.deepStrictEqual(identifyLinkInQuery('R-123'), ['R', -123]);
   });
 
   it('.formatLabel', function () {