Skip to content
This repository has been archived by the owner on Oct 15, 2020. It is now read-only.

Commit

Permalink
test: disabling unsupported parts of tests
Browse files Browse the repository at this point in the history
  • Loading branch information
MSLaguana authored and kfarnung committed Sep 11, 2018
1 parent 4dc7305 commit dffae30
Show file tree
Hide file tree
Showing 2 changed files with 10 additions and 0 deletions.
6 changes: 6 additions & 0 deletions test/parallel/parallel.status
Original file line number Diff line number Diff line change
Expand Up @@ -237,6 +237,12 @@ test-heapdump-zlib : SKIP
# see https://github.com/nodejs/node-chakracore/issues/536
test-env-newprotomethod-remove-unnecessary-prototypes : SKIP

# SharedArrayBuffers are returning null contents for some reason
# This leads to asserts in node
# Disabling this test until the problem is addressed
# https://github.com/nodejs/node-chakracore/issues/584
test-buffer-sharedarraybuffer : SKIP

[$jsEngine==chakracore && $system==win32]
# These tests are failing for Node-Chakracore and should eventually be fixed
test-module-loading-globalpaths : SKIP
Expand Down
4 changes: 4 additions & 0 deletions test/parallel/test-util-inspect.js
Original file line number Diff line number Diff line change
Expand Up @@ -1680,9 +1680,13 @@ if (!common.isChakraEngine) {
assert.notStrictEqual(util.inspect(value), expected);
});

if (!common.isChakraEngine) {
eval(`
assert.strictEqual(inspect(1n), '1n');
assert.strictEqual(inspect(Object(-1n)), '[BigInt: -1n]');
assert.strictEqual(inspect(Object(13n)), '[BigInt: 13n]');
`);
}

// Verify non-enumerable keys get escaped.
{
Expand Down

0 comments on commit dffae30

Please sign in to comment.