1
0
mirror of https://github.com/redis/node-redis.git synced 2025-08-09 00:22:08 +03:00

increase dockers timeout to 30s

This commit is contained in:
leibale
2021-11-01 11:33:45 -04:00
parent 5cff3320d2
commit 97dd75a9e5

View File

@@ -89,7 +89,7 @@ export default class TestUtils {
if (this.isVersionGreaterThan(options.minimumDockerVersion)) {
const dockerImage = this.#DOCKER_IMAGE;
before(function () {
this.timeout(5000);
this.timeout(30000);
dockerPromise = spawnRedisServer(dockerImage, options.serverArguments);
return dockerPromise;
@@ -140,7 +140,7 @@ export default class TestUtils {
if (this.isVersionGreaterThan(options.minimumDockerVersion)) {
const dockerImage = this.#DOCKER_IMAGE;
before(function () {
this.timeout(10000);
this.timeout(30000);
dockersPromise = spawnRedisCluster(dockerImage, options.serverArguments);
return dockersPromise;