11cb0ef41Sopenharmony_ci'use strict'; 21cb0ef41Sopenharmony_ciconst common = require('../common'); 31cb0ef41Sopenharmony_ci 41cb0ef41Sopenharmony_cicommon.skipIfInspectorDisabled(); 51cb0ef41Sopenharmony_ci 61cb0ef41Sopenharmony_ciconst { Session } = require('inspector'); 71cb0ef41Sopenharmony_ciconst { Worker, isMainThread, workerData } = require('worker_threads'); 81cb0ef41Sopenharmony_ci 91cb0ef41Sopenharmony_ciif (!workerData) { 101cb0ef41Sopenharmony_ci common.skipIfWorker(); 111cb0ef41Sopenharmony_ci} 121cb0ef41Sopenharmony_ci 131cb0ef41Sopenharmony_ciif (isMainThread) { 141cb0ef41Sopenharmony_ci new Worker(__filename, { workerData: {} }); 151cb0ef41Sopenharmony_ci} else { 161cb0ef41Sopenharmony_ci const session = new Session(); 171cb0ef41Sopenharmony_ci session.connectToMainThread(); 181cb0ef41Sopenharmony_ci // Do not crash 191cb0ef41Sopenharmony_ci session.disconnect(); 201cb0ef41Sopenharmony_ci} 21