/
githubmirror
/
node
Обзор
Документация
Войти
/
githubmirror
/
node
Код
Запросы
0
Пакеты
0
Релизы
0
Аналитика
Безопасность
v22.23.2
test/async-hooks/test-graph.pipe.js
32 строки
793 B
Antoine du Hamel
test: add trailing commas in async-hooks tests (#45549)
21 ноя 2022, 20:43
Не верифицирован
21 ноя 2022, 20:43
cf46746
Код
Авторство
О чём код?
'use strict'; const common = require('../common'); const initHooks = require('./init-hooks'); const verifyGraph = require('./verify-graph'); const spawn = require('child_process').spawn; const hooks = initHooks(); hooks.enable(); const sleep = spawn('sleep', [ '0.1' ]); sleep .on('exit', common.mustCall(onsleepExit)) .on('close', common.mustCall(onsleepClose)); function onsleepExit() {} function onsleepClose() {} process.on('exit', onexit); function onexit() { hooks.disable(); verifyGraph( hooks, [ { type: 'PROCESSWRAP', id: 'process:1', triggerAsyncId: null }, { type: 'PIPEWRAP', id: 'pipe:1', triggerAsyncId: null }, { type: 'PIPEWRAP', id: 'pipe:2', triggerAsyncId: null }, { type: 'PIPEWRAP', id: 'pipe:3', triggerAsyncId: null } ], ); }