reset timeouts

This commit is contained in:
scottbommarito
2016-06-23 15:46:40 -07:00
parent a37c0b989e
commit ab8f338907
2 changed files with 2 additions and 2 deletions

View File

@@ -64,7 +64,7 @@ function itInternal(func, expectation, isCoreTest, assertion) {
if ((!TestConfig.onlyRunCoreTests || isCoreTest)) {
// Create a wrapper around the assertion to set the timeout on the test to 10 minutes.
var assertionWithTimeout = function (done) {
this.timeout(20 * 60 * 1000);
this.timeout(10 * 60 * 1000);
assertion(done);
};
return it(expectation, assertionWithTimeout);