gulp-mocha
Advanced tools
Comparing version 4.2.0 to 4.3.0
@@ -9,2 +9,4 @@ 'use strict'; | ||
const HUNDRED_MEGABYTES = 1000 * 1000 * 100; | ||
module.exports = opts => { | ||
@@ -45,3 +47,6 @@ opts = Object.assign({ | ||
const env = npmRunPath.env({cwd: __dirname}); | ||
const proc = execa('mocha', files.concat(args), {env}); | ||
const proc = execa('mocha', files.concat(args), { | ||
env, | ||
maxBuffer: HUNDRED_MEGABYTES | ||
}); | ||
@@ -48,0 +53,0 @@ proc.then(result => { |
{ | ||
"name": "gulp-mocha", | ||
"version": "4.2.0", | ||
"version": "4.3.0", | ||
"description": "Run Mocha tests", | ||
@@ -5,0 +5,0 @@ "license": "MIT", |
6386
54