11cb0ef41Sopenharmony_ci'use strict'; 21cb0ef41Sopenharmony_ciconst common = require('../common'); 31cb0ef41Sopenharmony_ciconst assert = require('assert'); 41cb0ef41Sopenharmony_ciconst { Worker } = require('worker_threads'); 51cb0ef41Sopenharmony_ciconst { once } = require('events'); 61cb0ef41Sopenharmony_ci 71cb0ef41Sopenharmony_ci(async function() { 81cb0ef41Sopenharmony_ci const w = new Worker('', { eval: true }); 91cb0ef41Sopenharmony_ci 101cb0ef41Sopenharmony_ci await once(w, 'exit'); 111cb0ef41Sopenharmony_ci await assert.rejects(() => w.getHeapSnapshot(), { 121cb0ef41Sopenharmony_ci name: 'Error', 131cb0ef41Sopenharmony_ci code: 'ERR_WORKER_NOT_RUNNING' 141cb0ef41Sopenharmony_ci }); 151cb0ef41Sopenharmony_ci})().then(common.mustCall()); 16