From a682276b96692f483ae77936b9d07b967518aa39 Mon Sep 17 00:00:00 2001 From: feugy Date: Thu, 9 Jun 2016 08:30:00 +0200 Subject: [PATCH] Fix case typo --- gulpfile.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/gulpfile.js b/gulpfile.js index 8c27d4c..ce7da6f 100644 --- a/gulpfile.js +++ b/gulpfile.js @@ -62,7 +62,7 @@ gulp.task('test', ['cleanBuild'], function(callback){ } spawn(cmd, [], { stdio:'inherit', - env: Object.Assign({}, process.env, {NODE_ENV:"test"}) + env: Object.assign({}, process.env, {NODE_ENV:"test"}) }).on('exit', function(code) { if (callback) { callback(code === 0 ? null : code);