]> git.openstreetmap.org Git - nominatim-ui.git/blobdiff - test/_bootstrap.js
Merge remote-tracking branch 'upstream/master'
[nominatim-ui.git] / test / _bootstrap.js
index ad7733a5f95606ba9868c1faae1b52a7b0e5c0a4..e608d2b451e3b4d5a2d471de235b5e012c1cb21e 100644 (file)
@@ -7,7 +7,7 @@ import fse from 'fs-extra';
 const testing_port = 9999; // this is the port all tests expect nominatim-ui to listen to
 
 // The installation on https://nominatim.openstreetmap.org/ui/ is a bit more complex as
-// for backward compatiblity they run the API and the UI on the same port. Nominatim-UI
+// for backward compatibility they run the API and the UI on the same port. Nominatim-UI
 // is installed in the /ui subdirectory plus their webserver has custom redirect rules.
 //
 // We can simulate that with a proxy.
@@ -49,7 +49,7 @@ Nominatim_Config.Reverse_Only = ${reverse_only};
       let api_url_match = req.url.match(/\/(\w+\.php)/);
 
       let target = api_url_match
-        ? 'http://nominatim.openstreetmap.org/' + api_url_match[1]
+        ? 'https://nominatim.openstreetmap.org'
         : 'http://localhost:' + static_port;
 
       // console.log(`http proxy ${req.url} => ${target + req.url}`)
@@ -62,8 +62,9 @@ Nominatim_Config.Reverse_Only = ${reverse_only};
   // 3. Create browser instance
   global.browser = await puppeteer.launch({
     defaultViewport: { width: 1024, height: 768 },
-    timeout: 10000,
+    timeout: 20000,
     // latency: 1000,
+    headless: 'new',
     args: [
       '--user-agent=Nominatim UI test suite Mozilla/5.0 Gecko/20100101 HeadlessChrome/90.0'
     ]