Add tests for calling BigInt functions with fewer arguments than required (#2075)

This commit is contained in:
Robin Templeton 2019-02-19 13:25:25 -05:00 committed by Leo Balter
parent 298ad6907b
commit efa414ae00
2 changed files with 15 additions and 0 deletions

View File

@ -11,6 +11,14 @@ features: [BigInt, computed-property-names, Symbol, Symbol.toPrimitive]
---*/
assert.sameValue(typeof BigInt, 'function');
assert.sameValue(typeof BigInt.asIntN, 'function');
assert.throws(TypeError, function () {
BigInt.asIntN();
}, "ToBigInt: no argument => undefined => TypeError");
assert.throws(TypeError, function () {
BigInt.asIntN(0);
}, "ToBigInt: no argument => undefined => TypeError");
assert.throws(TypeError, function() {
BigInt.asIntN(0, undefined);
}, "ToBigInt: undefined => TypeError");

View File

@ -12,6 +12,13 @@ features: [BigInt, computed-property-names, Symbol, Symbol.toPrimitive]
assert.sameValue(typeof BigInt, 'function');
assert.sameValue(typeof BigInt.asUintN, 'function');
assert.throws(TypeError, function () {
BigInt.asUintN();
}, "ToBigInt: no argument => undefined => TypeError");
assert.throws(TypeError, function () {
BigInt.asUintN(0);
}, "ToBigInt: no argument => undefined => TypeError");
assert.throws(TypeError, function() {
BigInt.asUintN(0, undefined);
}, "ToBigInt: undefined => TypeError");