From a3d06edcf2a5d743fb4bc98c298b6df819adab34 Mon Sep 17 00:00:00 2001 From: Rich Trott Date: Thu, 8 Jun 2017 12:25:31 -0700 Subject: [PATCH] test: refactor async-hooks test-callback-error Two child processes have their logic in a switch statement and a third uses an `if` statement to detect it. Move all three child process tasks into switch statement. --- test/async-hooks/test-callback-error.js | 15 +++++++-------- 1 file changed, 7 insertions(+), 8 deletions(-) diff --git a/test/async-hooks/test-callback-error.js b/test/async-hooks/test-callback-error.js index 8fe0177449e4ff..6b09e4bb49748d 100644 --- a/test/async-hooks/test-callback-error.js +++ b/test/async-hooks/test-callback-error.js @@ -24,15 +24,14 @@ switch (process.argv[2]) { async_hooks.triggerId()); async_hooks.emitBefore(async_hooks.currentId()); break; -} - -if (process.execArgv.includes('--abort-on-uncaught-exception')) { - initHooks({ - oninit: common.mustCall(() => { throw new Error('test_callback_abort'); }) - }).enable(); + case 'test_callback_abort': + initHooks({ + oninit: common.mustCall(() => { throw new Error('test_callback_abort'); }) + }).enable(); - async_hooks.emitInit(async_hooks.currentId(), 'test_callback_abort', - async_hooks.triggerId()); + async_hooks.emitInit(async_hooks.currentId(), 'test_callback_abort', + async_hooks.triggerId()); + break; } const c1 = spawnSync(`${process.execPath}`, [__filename, 'test_init_callback']);