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

Commit

Permalink
test: disable test for util.types.isBig(U)Int64Array
Browse files Browse the repository at this point in the history
  • Loading branch information
jackhorton authored and kfarnung committed Apr 18, 2018
1 parent 466c003 commit 16f3b88
Showing 1 changed file with 3 additions and 2 deletions.
5 changes: 3 additions & 2 deletions test/parallel/test-util-types.js
Original file line number Diff line number Diff line change
Expand Up @@ -43,8 +43,9 @@ for (const [ value, _method ] of [
[ new Int32Array() ],
[ new Float32Array() ],
[ new Float64Array() ],
[ new BigInt64Array() ],
[ new BigUint64Array() ],
// Node-ChakraCore does not support BigInts
[ !common.isChakraEngine ? new BigInt64Array() : new Date() ],
[ !common.isChakraEngine ? new BigUint64Array() : new Date() ],
[ Object.defineProperty(new Uint8Array(),
Symbol.toStringTag,
{ value: 'foo' }) ],
Expand Down

0 comments on commit 16f3b88

Please sign in to comment.