diff options
Diffstat (limited to 'js/src/tests/ecma_6/Array/from_surfaces.js')
-rw-r--r-- | js/src/tests/ecma_6/Array/from_surfaces.js | 13 |
1 files changed, 13 insertions, 0 deletions
diff --git a/js/src/tests/ecma_6/Array/from_surfaces.js b/js/src/tests/ecma_6/Array/from_surfaces.js new file mode 100644 index 000000000..680b64817 --- /dev/null +++ b/js/src/tests/ecma_6/Array/from_surfaces.js @@ -0,0 +1,13 @@ +/* Any copyright is dedicated to the Public Domain. + * http://creativecommons.org/licenses/publicdomain/ */ + +// Check superficial features of Array.from. +var desc = Object.getOwnPropertyDescriptor(Array, "from"); +assertEq(desc.configurable, true); +assertEq(desc.enumerable, false); +assertEq(desc.writable, true); +assertEq(Array.from.length, 1); +assertThrowsInstanceOf(() => new Array.from(), TypeError); // not a constructor + +if (typeof reportCompare === 'function') + reportCompare(0, 0); |