Can `PULUMI_TEST_MODE` work with a local stack ?
# general
a
Can
PULUMI_TEST_MODE
work with a local stack ?
w
I am not aware of any reason why it wouldn't - are you seeing issues trying to use these together?
a
hmm I need to investigate a little more
It seems that pulumi.all doesnt resolve on many of my properties. I’m using the sample from the blog article and
Copy code
it.only("must have a name tag", function(done) {
            this.timeout(50000);
            pulumi.all([server.tags]).apply(res => {
                console.log(res);
                done();
            })
        });
never ends
but it’s working with a local stack
no problem on this side
w
a
Yep thanks for the link