diff --git a/tests/all.js b/tests/all.js index 30b698cbd..400a656cc 100644 --- a/tests/all.js +++ b/tests/all.js @@ -18,7 +18,7 @@ describe('AllTests', function() { require('./cli/tag'); require('./cli/env'); require('./cli/module_create'); - //require('./cli/run'); + require('./cli/run'); /** * Tests below create AWS Resources diff --git a/tests/cli/run.js b/tests/cli/run.js index 2ea124123..5b2da0545 100644 --- a/tests/cli/run.js +++ b/tests/cli/run.js @@ -18,12 +18,12 @@ describe('Test "run" command', function() { before(function(done) { testUtils.createTestProject( - config.name, - config.region, - config.stage, - config.iamRoleArnLambda, - config.iamRoleArnApiGateway, - config.usEast1Bucket) + config.name, + config.stage, + config.region, + config.domain, + config.iamRoleArnLambda, + config.iamRoleArnApiGateway) .then(function(pp) { projPath = pp; process.chdir(path.join(projPath, 'aws_modules', 'sessions', 'show'));