11cb0ef41Sopenharmony_ci'use strict'; 21cb0ef41Sopenharmony_ciconst common = require('../common'); 31cb0ef41Sopenharmony_ciconst assert = require('assert'); 41cb0ef41Sopenharmony_ci 51cb0ef41Sopenharmony_ciprocess.setUncaughtExceptionCaptureCallback(common.mustNotCall()); 61cb0ef41Sopenharmony_ci 71cb0ef41Sopenharmony_ciassert.throws( 81cb0ef41Sopenharmony_ci () => require('domain'), 91cb0ef41Sopenharmony_ci { 101cb0ef41Sopenharmony_ci code: 'ERR_DOMAIN_CALLBACK_NOT_AVAILABLE', 111cb0ef41Sopenharmony_ci name: 'Error', 121cb0ef41Sopenharmony_ci message: /^A callback was registered.*with using the `domain` module/ 131cb0ef41Sopenharmony_ci } 141cb0ef41Sopenharmony_ci); 151cb0ef41Sopenharmony_ci 161cb0ef41Sopenharmony_ciprocess.setUncaughtExceptionCaptureCallback(null); 171cb0ef41Sopenharmony_cirequire('domain'); // Should not throw. 18