Skip to content

Commit 37bc580

Browse files
committed
linting happy
1 parent d1d2200 commit 37bc580

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

lib/index.test.js

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -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

Comments
 (0)