Howdy ya'll. I'm experimenting with adding some un...
# help
s
Howdy ya'll. I'm experimenting with adding some unit tests against my infra. I already had jest configured at the root of our monorepo which includes SST infra. I've noted that when I add tests against my stacks the actual build process for lambdas/static sites actually kicks off. Is there a way to avoid this, a shallow render of sort.
t
right now I don't think so - the way cdk works is it needs to actually build these functions to generate the assets, etc that get pushed into the cfn template
we have some ideas around making synth defer those steps
s
ah, ok, ta for the insight though
the defer sounds promising
some potential dx wins there too
t
yeah if we defer those builds we 1. Skip building assets if you're deploying a specific stack 2. Run builds in parallel
s
🤤
huge