���� JFIF �� � ( %"1"%)+...383,7(-.-
![]() Server : Apache/2.4.6 (CentOS) OpenSSL/1.0.2k-fips PHP/7.4.20 System : Linux st2.domain.com 3.10.0-1127.10.1.el7.x86_64 #1 SMP Wed Jun 3 14:28:03 UTC 2020 x86_64 User : apache ( 48) PHP Version : 7.4.20 Disable Function : NONE Directory : /home/real/node-v13.0.1/test/parallel/ |
'use strict'; const common = require('../common'); // This test verifies that the next tick queue runs after each // individual Timeout, as well as each individual Immediate. setTimeout(common.mustCall(() => { process.nextTick(() => { // Confirm that clearing Timeouts from a next tick doesn't explode. clearTimeout(t2); clearTimeout(t3); }); }), 1); const t2 = setTimeout(common.mustNotCall(), 1); const t3 = setTimeout(common.mustNotCall(), 1); setTimeout(common.mustCall(), 1); common.busyLoop(5); setImmediate(common.mustCall(() => { process.nextTick(() => { // Confirm that clearing Immediates from a next tick doesn't explode. clearImmediate(i2); clearImmediate(i3); }); })); const i2 = setImmediate(common.mustNotCall()); const i3 = setImmediate(common.mustNotCall()); setImmediate(common.mustCall());