1'use strict';
2const common = require('../../common');
3const { runMakeCallback } = require(`./build/${common.buildType}/binding`);
4
5process.on('uncaughtException', common.mustCall());
6
7runMakeCallback(5, common.mustCall(() => {
8  throw new Error('foo');
9}));
10