mirror of
https://github.com/nodejs/node.git
synced 2024-11-21 10:59:27 +00:00
5d559f4a74
PR-URL: https://github.com/nodejs/node/pull/41831 Refs: https://eslint.org/docs/rules/no-empty Reviewed-By: Colin Ihrig <cjihrig@gmail.com> Reviewed-By: Tobias Nießen <tniessen@tnie.de> Reviewed-By: Antoine du Hamel <duhamelantoine1995@gmail.com>
12 lines
281 B
JavaScript
12 lines
281 B
JavaScript
'use strict';
|
|
|
|
require('../common');
|
|
const { AsyncResource } = require('async_hooks');
|
|
|
|
try {
|
|
new AsyncResource('foo').runInAsyncScope(() => { throw new Error('bar'); });
|
|
} catch {
|
|
// Continue regardless of error.
|
|
}
|
|
// Should abort (fail the case) if async id is not matching.
|