express-http-proxy
Version:
http proxy middleware for express
19 lines (14 loc) • 340 B
JavaScript
/**
* Test timeout constants in milliseconds
*/
module.exports = {
// Standard timeout for most tests
STANDARD: 10000,
// Shorter timeout for quick tests
QUICK: 2000,
// Medium timeout for tests that need a bit more time
MEDIUM: 3000,
// Extended timeout for tests that need more time
EXTENDED: 15000
};
;