@@ -316,7 +316,7 @@ describe('ServerlessStepFunctions', () => {
316316
317317 describe ( '#activityDeploy()' , ( ) => {
318318 it ( 'should run promise chain in order when name is given with notDeployed' , ( ) => {
319- serverlessStepFunctions . deployedActivities . hellofunc = 'notDeployed'
319+ serverlessStepFunctions . deployedActivities . hellofunc = 'notDeployed' ;
320320 const yamlParseStub = sinon
321321 . stub ( serverlessStepFunctions , 'yamlParse' ) . returns ( BbPromise . resolve ( ) ) ;
322322 const checkActivitySettingStub = sinon
@@ -345,7 +345,7 @@ describe('ServerlessStepFunctions', () => {
345345 } ) ;
346346
347347 it ( 'should run promise chain in order when name is given with deployed' , ( ) => {
348- serverlessStepFunctions . deployedActivities . hellofunc = 'deployed'
348+ serverlessStepFunctions . deployedActivities . hellofunc = 'deployed' ;
349349 const yamlParseStub = sinon
350350 . stub ( serverlessStepFunctions , 'yamlParse' ) . returns ( BbPromise . resolve ( ) ) ;
351351 const checkActivitySettingStub = sinon
@@ -405,7 +405,7 @@ describe('ServerlessStepFunctions', () => {
405405
406406 describe ( '#activityDeploy()' , ( ) => {
407407 it ( 'should run promise chain in order when name is given with deployed' , ( ) => {
408- serverlessStepFunctions . deployedActivities . hellofunc = 'deployed'
408+ serverlessStepFunctions . deployedActivities . hellofunc = 'deployed' ;
409409 const yamlParseStub = sinon
410410 . stub ( serverlessStepFunctions , 'yamlParse' ) . returns ( BbPromise . resolve ( ) ) ;
411411 const checkActivitySettingStub = sinon
@@ -434,7 +434,7 @@ describe('ServerlessStepFunctions', () => {
434434 } ) ;
435435
436436 it ( 'should run promise chain in order when name is given with notDeployed' , ( ) => {
437- serverlessStepFunctions . deployedActivities . hellofunc = 'notDeployed'
437+ serverlessStepFunctions . deployedActivities . hellofunc = 'notDeployed' ;
438438 const yamlParseStub = sinon
439439 . stub ( serverlessStepFunctions , 'yamlParse' ) . returns ( BbPromise . resolve ( ) ) ;
440440 const checkActivitySettingStub = sinon
0 commit comments