When unit testing, is there a way to not fake out ...
# general
l
When unit testing, is there a way to not fake out some providers? In particular, I don't want to have to write a replacement for
RandomString.result
.
Right now, my
newResource
function has to switch on args.type == "randomindex/randomStringRandomString". I'd like to be able to call out to the real provider if args.type starts with (for example) "random:".