BigInt: NaN is tested in nan-throws-rangeerror.js

This commit is contained in:
Rick Waldron 2017-10-18 17:08:13 -04:00
parent e2e534b210
commit 08a967c8a4
1 changed files with 0 additions and 4 deletions

View File

@ -14,10 +14,6 @@ assert.throws(TypeError, function() {
new BigInt();
});
assert.throws(TypeError, function() {
new BigInt(NaN);
});
assert.throws(TypeError, function() {
new BigInt({
valueOf: function() { throw new Test262Error("unreachable"); }