diff --git a/packages/zoe/src/contractFacet/evalContractCode.js b/packages/zoe/src/contractFacet/evalContractCode.js index d42ff0b5dcc..ec22c61434e 100644 --- a/packages/zoe/src/contractFacet/evalContractCode.js +++ b/packages/zoe/src/contractFacet/evalContractCode.js @@ -23,7 +23,9 @@ const evalContractBundle = (bundle, additionalEndowments = {}) => { const installation = importBundle(bundle, { endowments: fullEndowments, - }).catch(() => {}); // Don't trigger Node.js's UnhandledPromiseRejectionWarning + }); + // Don't trigger Node.js's UnhandledPromiseRejectionWarning + installation.catch(() => {}); return installation; };