Skip to content

Commit e41652d

Browse files
committedSep 27, 2016
Increase timeouts
because the testsuite process contains a lot of modules, we need to allow more time for module collection
1 parent 0f8261a commit e41652d

File tree

2 files changed

+3
-1
lines changed

2 files changed

+3
-1
lines changed
 

‎gulpfile.js

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -119,7 +119,8 @@ gulp.task('exceptionless.test.umd', ['typescript.test'], function () {
119119
gulp.task('test-node', ['exceptionless.test.umd'], function(done) {
120120
return gulp.src('dist/temp/exceptionless-nodespec.js', { read: false })
121121
.pipe($.mocha({
122-
require: ['source-map-support/register']
122+
require: ['source-map-support/register'],
123+
timeout: 5000
123124
}))
124125
.once('end', function () {
125126
process.exit();

‎testrunner.html

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -17,6 +17,7 @@
1717
<script src="node_modules/mocha/mocha.js"></script>
1818
<script>
1919
mocha.setup('bdd');
20+
mocha.setup({ timeout: 10000 });
2021
</script>
2122
<script data-main="test.config.js" src="node_modules/requirejs/require.js"></script>
2223
</body>

0 commit comments

Comments
 (0)
Please sign in to comment.