Lines Matching refs:nextTick
217 ' process.nextTick after rejection', function(done) {
227 process.nextTick(function() {
260 asyncTest('Attaching a promise catch in a process.nextTick is soon enough to' +
265 process.nextTick(function() {
270 asyncTest('Attaching a promise catch in a process.nextTick is soon enough to' +
277 process.nextTick(function() {
391 'nextTick-async rejected promise prevents unhandledRejection',
396 process.nextTick(function() {
401 process.nextTick(function() {
444 asyncTest('Waiting for some combination of process.nextTick + promise' +
452 process.nextTick(function() {
454 process.nextTick(function() {
463 asyncTest('Waiting for some combination of process.nextTick + promise' +
471 process.nextTick(function() {
473 process.nextTick(function() {
483 asyncTest('Waiting for some combination of process.nextTick + promise ' +
491 process.nextTick(function() {
493 process.nextTick(function() {
504 'process.nextTick to attach a catch handler is still soon enough' +
512 process.nextTick(function() {
514 process.nextTick(function() {
524 ' process.nextTick to attach a catch handler is still soon enough' +
533 process.nextTick(function() {
535 process.nextTick(function() {
546 ' process.nextTick to attach a catch handler is still soon enough' +
554 process.nextTick(function() {
556 process.nextTick(function() {
623 asyncTest('nextTick is immediately scheduled when called inside an event' +
629 process.nextTick(function() {
665 asyncTest('Rejected promise inside unhandledRejection allows nextTick loop' +
674 process.nextTick(() => promise.catch(() => done()));