You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 
 
 

32 lines
776 B

'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(code) {}
function onsleepClose() {}
process.on('exit', onexit);
function onexit() {
hooks.disable();
verifyGraph(
hooks,
[ { type: 'PROCESSWRAP', id: 'process:1', triggerId: null },
{ type: 'PIPEWRAP', id: 'pipe:1', triggerId: null },
{ type: 'PIPEWRAP', id: 'pipe:2', triggerId: null },
{ type: 'PIPEWRAP', id: 'pipe:3', triggerId: null } ]
);
}