brash-airline-37413
05/13/2021, 6:33 AMimport { Vpc } from '@pulumi/awsx/ec2';
import { describe, it } from 'mocha';
describe('Network', () => {
const myvpc: Vpc = new Vpc('test', {
cidrBlock: '10.0.0.0/16',
});
it('should use correct cidr address', (done) => {
myvpc.vpc.cidrBlock.apply(vpc => {
done();
});
});
});
full error is
Network
(node:84386) PromiseRejectionHandledWarning: Promise rejection was handled asynchronously (rejection id: 3)
(Use `node --trace-warnings ...` to show where the warning was created)
(node:84386) PromiseRejectionHandledWarning: Promise rejection was handled asynchronously (rejection id: 4)
Does anybody know what is happening here?No matter how you like to participate in developer communities, Pulumi wants to meet you there. If you want to meet other Pulumi users to share use-cases and best practices, contribute code or documentation, see us at an event, or just tell a story about something cool you did with Pulumi, you are part of our community.
Powered by