nodejs-mozilla/test/parallel/test-domain-no-error-handle...

22 lines
386 B
JavaScript
Raw Normal View History

2022-07-18 11:52:00 +08:00
'use strict';
const common = require('../common');
const domain = require('domain');
function test() {
const d = domain.create();
d.run(function() {
const fs = require('fs');
fs.exists('/non/existing/file', function onExists() {
throw new Error('boom!');
});
});
}
if (process.argv[2] === 'child') {
test();
} else {
common.childShouldThrowAndAbort();
}