X-Git-Url: https://git.openstreetmap.org./nominatim-ui.git/blobdiff_plain/61e0c9318d8f48915877e6985a46f57ec6d43b83..64e1ec4d0f152bc9a279c2f016a111f9943dc6a4:/test/_bootstrap.js?ds=sidebyside diff --git a/test/_bootstrap.js b/test/_bootstrap.js index c74de5b..b538f5c 100644 --- a/test/_bootstrap.js +++ b/test/_bootstrap.js @@ -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}; `);