diff options
Diffstat (limited to 'test/mocha')
-rw-r--r-- | test/mocha/cli.js | 4 | ||||
-rw-r--r-- | test/mocha/spidermonkey.js | 4 |
2 files changed, 6 insertions, 2 deletions
diff --git a/test/mocha/cli.js b/test/mocha/cli.js index 7a484487..dd181769 100644 --- a/test/mocha/cli.js +++ b/test/mocha/cli.js @@ -12,7 +12,9 @@ describe("bin/uglifyjs", function() { it("Should produce a functional build when using --self", function(done) { this.timeout(30000); var command = uglifyjscmd + ' --self -cm --wrap WrappedUglifyJS'; - exec(command, function(err, stdout) { + exec(command, { + maxBuffer: 1048576 + }, function(err, stdout) { if (err) throw err; eval(stdout); assert.strictEqual(typeof WrappedUglifyJS, "object"); diff --git a/test/mocha/spidermonkey.js b/test/mocha/spidermonkey.js index 196f1447..32351d03 100644 --- a/test/mocha/spidermonkey.js +++ b/test/mocha/spidermonkey.js @@ -10,7 +10,9 @@ describe("spidermonkey export/import sanity test", function() { var command = uglifyjs + " --self -cm --wrap SpiderUglify -o spidermonkey | " + uglifyjs + " -p spidermonkey -cm"; - exec(command, function(err, stdout) { + exec(command, { + maxBuffer: 1048576 + }, function(err, stdout) { if (err) throw err; eval(stdout); |