Lines Matching refs:signal
17 // Verify that the signal option works properly
19 const signal = ac.signal;
20 const promise = promisified(process.execPath, [echoFixture, 0], { signal });
31 // Verify that the signal option works properly when already aborted
32 const signal = AbortSignal.abort();
35 promisified(process.execPath, [echoFixture, 0], { signal }),
41 // Verify that if something different than Abortcontroller.signal
43 const signal = {};
45 promisified(process.execPath, [echoFixture, 0], { signal });
50 // Verify that if something different than Abortcontroller.signal
52 const signal = 'world!';
54 promisified(process.execPath, [echoFixture, 0], { signal });