From a0f7babc6ef0911955323cfad83cacae6a132bbf Mon Sep 17 00:00:00 2001 From: jeffnoehren Date: Mon, 9 Oct 2017 10:01:55 -0700 Subject: [PATCH] Spotinst - fixing spacing issues in creare.test.js --- lib/plugins/create/create.test.js | 15 +-------------- 1 file changed, 1 insertion(+), 14 deletions(-) diff --git a/lib/plugins/create/create.test.js b/lib/plugins/create/create.test.js index 914b77b0d..d8c8b9a41 100644 --- a/lib/plugins/create/create.test.js +++ b/lib/plugins/create/create.test.js @@ -462,19 +462,6 @@ describe('Create', () => { }); }); - it('should generate scaffolding for "spotinst-ruby" template', () => { - process.chdir(tmpDir); - create.options.template = 'spotinst-ruby'; - - return create.create().then(() => { - const dirContent = fs.readdirSync(tmpDir); - expect(dirContent).to.include('package.json'); - expect(dirContent).to.include('serverless.yml'); - expect(dirContent).to.include('handler.rb'); - expect(dirContent).to.include('.gitignore'); - }); - }); - it('should generate scaffolding for "webtasks-nodejs" template', () => { process.chdir(tmpDir); create.options.template = 'webtasks-nodejs'; @@ -620,4 +607,4 @@ describe('Create', () => { expect(() => create.create()).to.throw(Error); }); }); -}); +}); \ No newline at end of file