|
|
|
|
|
by scarface74
2938 days ago
|
|
Why do you say that you can only run lambdas in the environment? A Lambda function just calls a function with an event and a context parameter. I run and test my Lambda methods locally just like I do my Controller classes - create "unit tests" (not real unit tests just a method that calls the Lambda handler with the event body I want to use). Your Lambda handler should be skinny and just translate the message to your business methods just like a controller. |
|