11cb0ef41Sopenharmony_ci'use strict'; 21cb0ef41Sopenharmony_ciconst common = require('../common'); 31cb0ef41Sopenharmony_ciconst assert = require('assert'); 41cb0ef41Sopenharmony_ciconst async_hooks = require('async_hooks'); 51cb0ef41Sopenharmony_ci 61cb0ef41Sopenharmony_ci// Regression test for https://github.com/nodejs/node/issues/27585. 71cb0ef41Sopenharmony_ci 81cb0ef41Sopenharmony_ciasync_hooks.createHook({ init: () => {} }).enable().disable().enable(); 91cb0ef41Sopenharmony_ciasync_hooks.createHook({ init: () => {} }).enable(); 101cb0ef41Sopenharmony_ci 111cb0ef41Sopenharmony_ciasync function main() { 121cb0ef41Sopenharmony_ci const initialAsyncId = async_hooks.executionAsyncId(); 131cb0ef41Sopenharmony_ci await 0; 141cb0ef41Sopenharmony_ci assert.notStrictEqual(async_hooks.executionAsyncId(), initialAsyncId); 151cb0ef41Sopenharmony_ci} 161cb0ef41Sopenharmony_ci 171cb0ef41Sopenharmony_cimain().then(common.mustCall()); 18