Merged PR 21: increase test setup timeout to avoid random setup timeouts

increase test setup timeout to avoid random setup timeouts
This commit is contained in:
Mohammad Derakhshani 2017-11-29 07:03:12 +00:00
Родитель 967d2eab7c
Коммит e6016cf72c
2 изменённых файлов: 4 добавлений и 2 удалений

Просмотреть файл

@ -2,6 +2,8 @@
"name": "documentdb",
"description": "Node.js SDK for DocumentDB API of Azure Cosmos DB Service",
"keywords": [
"cosmosdb",
"cosmos db",
"documentdb",
"document database",
"azure",

Просмотреть файл

@ -37,7 +37,7 @@ var masterKey = testConfig.masterKey;
describe("Authorization bug fix Test", function () {
/************** VARIABLES **************/
this.timeout(2500);
this.timeout(5000);
var client = new DocumentDBClient(host, { masterKey: masterKey });
var database = { id: "dbs" };
@ -229,4 +229,4 @@ describe("Authorization bug fix Test", function () {
modifyCollectionByPermission(clientAllPermission, collection._self, done);
});
});
});
});