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

Commit 16f3b88

Browse files
jackhortonkfarnung
authored andcommitted
test: disable test for util.types.isBig(U)Int64Array
1 parent 466c003 commit 16f3b88

File tree

1 file changed

+3
-2
lines changed

1 file changed

+3
-2
lines changed

test/parallel/test-util-types.js

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -43,8 +43,9 @@ for (const [ value, _method ] of [
4343
[ new Int32Array() ],
4444
[ new Float32Array() ],
4545
[ new Float64Array() ],
46-
[ new BigInt64Array() ],
47-
[ new BigUint64Array() ],
46+
// Node-ChakraCore does not support BigInts
47+
[ !common.isChakraEngine ? new BigInt64Array() : new Date() ],
48+
[ !common.isChakraEngine ? new BigUint64Array() : new Date() ],
4849
[ Object.defineProperty(new Uint8Array(),
4950
Symbol.toStringTag,
5051
{ value: 'foo' }) ],

0 commit comments

Comments
 (0)