Hey guys, I have a question. Is it possible to spin up sst just locally without actually deploying to AWS? Something like using sam local?
t
thdxr
01/28/2022, 9:45 PM
Hey Manoel - we don't have a way to do this because SST is mostly focused on cloud based local development
thdxr
01/28/2022, 9:46 PM
We only run lambda execution locally but it still depends on real things that are deployed.
thdxr
01/28/2022, 9:46 PM
I'd suggest using a testing framework if you want to test very specific functionality
m
Manoel Feliciano
01/28/2022, 9:48 PM
Ah, sure. How you guys are doing integration tests? I have my application unit tested, but I want to test if everything is working when every piece is put together. But I also want to mock some external services requests (like API requests) during these tests.