diff options
Diffstat (limited to 'js/src/tests/ecma_5/Object/object-create-with-primitive-second-arg.js')
-rw-r--r-- | js/src/tests/ecma_5/Object/object-create-with-primitive-second-arg.js | 8 |
1 files changed, 8 insertions, 0 deletions
diff --git a/js/src/tests/ecma_5/Object/object-create-with-primitive-second-arg.js b/js/src/tests/ecma_5/Object/object-create-with-primitive-second-arg.js new file mode 100644 index 000000000..44afd53c2 --- /dev/null +++ b/js/src/tests/ecma_5/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); |