What is the standard approach to running tests of ...
# general
b
What is the standard approach to running tests of lambdas for example? If they are stored in the same repository there isn't any way of invoking just that lambda through Pulumi, so do people tend to launch a stack and run tests against that? Or break out the function logic to perform unit tests? I'm trying to understand the development lifecycle and what other people are doing
i
I know that we personally do the former to test our own packages.
b
Is that manually or in a CI environment?
i
@billions-lock-73409 In CI. We spin up some infrastructure, run some tests against them, and spin them down
b
Ok, gotcha. Thanks for the input