-
Notifications
You must be signed in to change notification settings - Fork 245
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
FIX: #178 change mocha functional tests timeout
- Loading branch information
1 parent
d39d4a2
commit edc58b6
Showing
3 changed files
with
3 additions
and
3 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,4 +1,4 @@ | ||
--compilers js:babel-core/register | ||
--recursive | ||
--timeout 10000 | ||
--timeout 40000 | ||
--ui tdd |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -5,6 +5,6 @@ | |
"arsenal": "scality/Arsenal" | ||
}, | ||
"scripts": { | ||
"test": "mocha *.js" | ||
"test": "mocha -t 40000 *.js" | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -6,6 +6,6 @@ | |
"xml2js": "~0.4.12" | ||
}, | ||
"scripts": { | ||
"test": "mocha *.js" | ||
"test": "mocha -t 40000 *.js" | ||
} | ||
} |