From cf0daebce48836479ad8af75f94146c735bb7dab Mon Sep 17 00:00:00 2001 From: Tsutomu Kawamura Date: Fri, 11 Nov 2016 20:23:40 +0900 Subject: [PATCH] Work around on Travis: 2nd attempt --- package.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/package.json b/package.json index 91b6468..a348168 100644 --- a/package.json +++ b/package.json @@ -12,7 +12,7 @@ "index.js" ], "scripts": { - "pretest": "node --max_old_space_size=2048 node_modules/.bin/mongodb-runner start --topology=replicaset --port=27017", + "pretest": "node --max_semi_space_size=16 --max_old_space_size=1024 --max_executable_size=512 node_modules/.bin/mongodb-runner start --topology=replicaset --port=27017", "test": "npm run standard && npm run coverage", "posttest": "mongodb-runner stop --topology=replicaset --port=27017", "coverage": "env TZ='Asia/Tokyo' istanbul cover _mocha -- -R spec -t 20000 test/specs/*.js",