]> git.openstreetmap.org Git - nominatim-ui.git/blobdiff - test/_bootstrap.js
new config option -Reverse_Only- (#166)
[nominatim-ui.git] / test / _bootstrap.js
index b527ee8b32d522fd094f929218e236097e65305c..b538f5c2c89eb9142e8d13ea8ba49696f2ef435c 100644 (file)
@@ -13,7 +13,7 @@ const testing_port = 9999; // this is the port all tests expect nominatim-ui to
 // We can simulate that with a proxy.
 const use_proxy = !!process.env.API_ON_SAME_PORT;
 const static_port = use_proxy ? 9998 : 9999;
-
+const reverse_only = !!process.env.REVERSE_ONLY;
 
 // Methods to run at the start and end of the mocha testsuite run
 // https://mochajs.org/#global-setup-fixtures
@@ -28,6 +28,7 @@ exports.mochaGlobalSetup = async function () {
 
   fse.outputFile(workdir + '/theme/config.theme.js', `
 Nominatim_Config.Nominatim_API_Endpoint = '${api_endpoint}';
+Nominatim_Config.Reverse_Only = ${reverse_only};
   `);
 
 
@@ -61,7 +62,8 @@ Nominatim_Config.Nominatim_API_Endpoint = '${api_endpoint}';
   // 3. Create browser instance
   global.browser = await puppeteer.launch({
     defaultViewport: { width: 1024, height: 768 },
-    timeout: 5000,
+    timeout: 10000,
+    // latency: 1000,
     args: [
       '--user-agent=Nominatim UI test suite Mozilla/5.0 Gecko/20100101 HeadlessChrome/90.0'
     ]