From 4dfd7a2ead4fcce0c26177a1a6ea36c08e9f1191 Mon Sep 17 00:00:00 2001 From: ac360 Date: Tue, 2 Feb 2016 00:04:34 -0800 Subject: [PATCH] Release V0.3.0 --- package.json | 2 +- tests/all.js | 2 +- tests/tests/actions/FunctionDeploy.js | 2 +- 3 files changed, 3 insertions(+), 3 deletions(-) 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'); };