From 4729cb5a208eaecfef74c583302fa583e7268577 Mon Sep 17 00:00:00 2001 From: Piotr Grzesik Date: Tue, 30 Mar 2021 12:48:51 +0200 Subject: [PATCH] test: Remove unnecessary CLI params in `integrationBasic.test.js` --- test/integrationBasic.test.js | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/test/integrationBasic.test.js b/test/integrationBasic.test.js index fe3dbc26e..e5e7708a1 100644 --- a/test/integrationBasic.test.js +++ b/test/integrationBasic.test.js @@ -71,7 +71,7 @@ describe('Service Lifecyle Integration Test', function () { it('should invoke function from aws', async () => { const { stdoutBuffer: invoked } = await spawn( serverlessExec, - ['invoke', '--function', 'hello', '--noGreeting', 'true'], + ['invoke', '--function', 'hello'], spawnOptions ); const result = JSON.parse(invoked); @@ -96,7 +96,7 @@ describe('Service Lifecyle Integration Test', function () { it('should invoke updated function from aws', async () => { const { stdoutBuffer: invoked } = await spawn( serverlessExec, - ['invoke', '--function', 'hello', '--noGreeting', 'true'], + ['invoke', '--function', 'hello'], spawnOptions ); const result = JSON.parse(invoked); @@ -122,7 +122,7 @@ describe('Service Lifecyle Integration Test', function () { const { stdoutBuffer: invoked } = await spawn( serverlessExec, - ['invoke', '--function', 'hello', '--noGreeting', 'true'], + ['invoke', '--function', 'hello'], spawnOptions ); const result = JSON.parse(invoked);