diff --git a/scripts/test.js b/scripts/test.js index 950e50d8c..d46c58dd3 100644 --- a/scripts/test.js +++ b/scripts/test.js @@ -11,14 +11,14 @@ program .option('-c, --country ', 'Comma-separated list of country codes', '') .option('-e, --exclude ', 'Comma-separated list of country codes to be excluded', '') .option('--delay ', 'Delay between parser requests', 1000) - .option('--timeout ', 'Set timeout for each request', 5000) + .option('--timeout ', 'Set timeout for each request', 60000) .parse(process.argv) const config = program.opts() const instance = axios.create({ timeout: config.timeout, - maxContentLength: 20000, + maxContentLength: 200000, httpsAgent: new https.Agent({ rejectUnauthorized: false }),