test262/test/built-ins/JSON/stringify/value-bigint.js

13 lines
396 B
JavaScript
Raw Normal View History

2017-07-11 17:55:23 +02:00
// Copyright (C) 2017 Robin Templeton. All rights reserved.
// This code is governed by the BSD license found in the LICENSE file.
/*---
description: JSON serialization of BigInt values
esid: pending
features: [BigInt]
---*/
assert.throws(TypeError, () => JSON.stringify(0n));
assert.throws(TypeError, () => JSON.stringify(Object(0n)));
assert.throws(TypeError, () => JSON.stringify({x: 0n}));