diff --git a/package.json b/package.json index dae4a2a65..7f06725bb 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "serverless", - "version": "0.2.1", + "version": "0.3.0", "engines": { "node": ">=4.0" }, diff --git a/tests/all.js b/tests/all.js index 81b37d8e7..40b2fbf92 100644 --- a/tests/all.js +++ b/tests/all.js @@ -28,7 +28,7 @@ describe('All Tests', function() { //require('./tests/actions/EnvSetUnset'); //require('./tests/actions/ResourcesDeploy'); require('./tests/actions/FunctionRun'); - //require('./tests/actions/FunctionDeploy'); + require('./tests/actions/FunctionDeploy'); //require('./tests/actions/EndpointDeploy'); //require('./tests/actions/ProjectInit'); //require('./tests/actions/ProjectInstall'); diff --git a/tests/tests/actions/FunctionDeploy.js b/tests/tests/actions/FunctionDeploy.js index e72bcb7c7..3c4c6586b 100644 --- a/tests/tests/actions/FunctionDeploy.js +++ b/tests/tests/actions/FunctionDeploy.js @@ -32,7 +32,7 @@ let validateEvent = function(evt) { console.log(evt.data.failed[Object.keys(evt.data.failed)[i]]); } } - + console.log(evt); assert.equal(true, typeof evt.data.failed === 'undefined'); assert.equal(true, typeof evt.data.deployed != 'undefined'); };