Hey guys, I’m running `sst test` to execute some t...
# sst
a
Hey guys, I’m running
sst test
to execute some tests… I want to validate my resources name, but looks like when I use
scope.stage
, the value is mapped to
dev
… why is that? is that possible to be changed to something like
test
?
f
Hey @Adrián Mouly, are you creating the
App
in your test? Can you try this?
Copy code
const app = new App({ stage: "test" });
a
Yes, did that and works!
Thank you!