[tests] increase test default timeout to 15 seconds

This commit is contained in:
Salakar 2017-08-16 21:40:56 +01:00
parent 56e9a1d5f6
commit 4e78c5373b
1 changed files with 1 additions and 1 deletions

View File

@ -135,7 +135,7 @@ class TestSuiteDefinition {
this.currentTestContext[hookAttribute] = this.currentTestContext[hookAttribute] || [];
this.currentTestContext[hookAttribute].push({
callback,
timeout: options.timeout || 5000,
timeout: options.timeout || 15000,
});
} else {
testDefinitionError(`non-function value ${callback} passed to ${hookName} for '${this.currentTestContext.name}'`);