diff options
Diffstat (limited to 'js/src/tests/non262/object/object-create-with-primitive-second-arg.js')
-rw-r--r-- | js/src/tests/non262/object/object-create-with-primitive-second-arg.js | 8 |
1 files changed, 8 insertions, 0 deletions
diff --git a/js/src/tests/non262/object/object-create-with-primitive-second-arg.js b/js/src/tests/non262/object/object-create-with-primitive-second-arg.js new file mode 100644 index 0000000000..44afd53c25 --- /dev/null +++ b/js/src/tests/non262/object/object-create-with-primitive-second-arg.js @@ -0,0 +1,8 @@ +[1, "", true, Symbol(), undefined].forEach(props => { + assertEq(Object.getPrototypeOf(Object.create(null, props)), null); +}); + +assertThrowsInstanceOf(() => Object.create(null, null), TypeError); + +if (typeof reportCompare === "function") + reportCompare(true, true); |