/
githubmirror
/
node
Обзор
Документация
Войти
/
githubmirror
/
node
Код
Запросы
0
Пакеты
0
Релизы
0
Аналитика
Безопасность
v26.2.0
test/async-hooks/test-graph.pipeconnect.js
39 строк
1000 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 net = require('net'); const tmpdir = require('../common/tmpdir'); tmpdir.refresh(); const hooks = initHooks(); hooks.enable(); const server = net.createServer((c) => { c.end(); server.close(); }).listen(common.PIPE, common.mustCall(onlisten)); function onlisten() { net.connect(common.PIPE, common.mustCall(onconnect)); } function onconnect() {} process.on('exit', onexit); function onexit() { hooks.disable(); verifyGraph( hooks, [ { type: 'PIPESERVERWRAP', id: 'pipeserver:1', triggerAsyncId: null }, { type: 'PIPEWRAP', id: 'pipe:1', triggerAsyncId: 'pipeserver:1' }, { type: 'PIPECONNECTWRAP', id: 'pipeconnect:1', triggerAsyncId: 'pipe:1' }, { type: 'PIPEWRAP', id: 'pipe:2', triggerAsyncId: 'pipeserver:1' }, { type: 'SHUTDOWNWRAP', id: 'shutdown:1', triggerAsyncId: 'pipe:2' } ], ); }