diff --git a/lib/v8.js b/lib/v8.js index 0e2a6533dc8..f6a550bb193 100644 --- a/lib/v8.js +++ b/lib/v8.js @@ -14,6 +14,10 @@ 'use strict'; +if (process.jsEngine === 'chakracore') { + return; +} + const { Buffer } = require('buffer'); const { ERR_INVALID_ARG_TYPE } = require('internal/errors').codes; const { diff --git a/test/parallel/parallel.status b/test/parallel/parallel.status index f0b3b151cd9..220a106095a 100644 --- a/test/parallel/parallel.status +++ b/test/parallel/parallel.status @@ -173,6 +173,11 @@ test-fs-readdir-stack-overflow : SKIP # in a particular way which is true for v8 but not true for charkacore test-string-decoder-end : SKIP +# These tests use the v8 module which chakracore does not support +test-process-exception-capture-should-abort-on-uncaught-setflagsfromstring : SKIP +test-v8-flag-type-check : SKIP +test-v8-stats : SKIP + [$jsEngine==chakracore && $arch==x64] # These tests are failing for Node-Chakracore and should eventually be fixed test-buffer-includes : SKIP