diff --git a/test/async-hooks/test-callback-error.js b/test/async-hooks/test-callback-error.js index 8fe0177449e..18493f73a43 100644 --- a/test/async-hooks/test-callback-error.js +++ b/test/async-hooks/test-callback-error.js @@ -6,6 +6,12 @@ const spawnSync = require('child_process').spawnSync; const async_hooks = require('async_hooks'); const initHooks = require('./init-hooks'); +if (common.isChakraEngine) { + common.skip('This test is disabled for chakra engine because it depends ' + + 'on v8-option --abort-on-uncaught-exception'); + return; +} + switch (process.argv[2]) { case 'test_init_callback': initHooks({ diff --git a/test/inspector/inspector.status b/test/inspector/inspector.status index 71241cf2271..507717cd3fe 100644 --- a/test/inspector/inspector.status +++ b/test/inspector/inspector.status @@ -12,4 +12,5 @@ test-inspector-port-zero-cluster : PASS,FLAKY [$jsEngine==chakracore] test-bindings : PASS,FLAKY test-inspector-break-when-eval : PASS,FLAKY +test-off-with-session-then-on : PASS,FLAKY