11cb0ef41Sopenharmony_ci'use strict'; 21cb0ef41Sopenharmony_ciconst common = require('../common'); 31cb0ef41Sopenharmony_ciconst assert = require('assert'); 41cb0ef41Sopenharmony_ciconst { Worker } = require('worker_threads'); 51cb0ef41Sopenharmony_ci 61cb0ef41Sopenharmony_ci// Verify that `.terminate()` interrupts the microtask queue. 71cb0ef41Sopenharmony_ci 81cb0ef41Sopenharmony_ciconst worker = new Worker(` 91cb0ef41Sopenharmony_cifunction loop() { Promise.resolve().then(loop); } loop(); 101cb0ef41Sopenharmony_cirequire('worker_threads').parentPort.postMessage('up'); 111cb0ef41Sopenharmony_ci`, { eval: true }); 121cb0ef41Sopenharmony_ci 131cb0ef41Sopenharmony_ciworker.once('message', common.mustCall(() => { 141cb0ef41Sopenharmony_ci setImmediate(() => worker.terminate()); 151cb0ef41Sopenharmony_ci})); 161cb0ef41Sopenharmony_ci 171cb0ef41Sopenharmony_ciworker.once('exit', common.mustCall((code) => { 181cb0ef41Sopenharmony_ci assert.strictEqual(code, 1); 191cb0ef41Sopenharmony_ci})); 20