summaryrefslogtreecommitdiffstats
path: root/js/src/tests/test262/built-ins/Array/from/Array.from-descriptor.js
diff options
context:
space:
mode:
Diffstat (limited to 'js/src/tests/test262/built-ins/Array/from/Array.from-descriptor.js')
-rw-r--r--js/src/tests/test262/built-ins/Array/from/Array.from-descriptor.js14
1 files changed, 14 insertions, 0 deletions
diff --git a/js/src/tests/test262/built-ins/Array/from/Array.from-descriptor.js b/js/src/tests/test262/built-ins/Array/from/Array.from-descriptor.js
new file mode 100644
index 0000000000..4d68536a30
--- /dev/null
+++ b/js/src/tests/test262/built-ins/Array/from/Array.from-descriptor.js
@@ -0,0 +1,14 @@
+// Copyright 2015 Microsoft Corporation. All rights reserved.
+// This code is governed by the license found in the LICENSE file.
+
+/*---
+description: Testing descriptor property of Array.from
+includes: [propertyHelper.js]
+esid: sec-array.from
+---*/
+
+verifyWritable(Array, "from");
+verifyNotEnumerable(Array, "from");
+verifyConfigurable(Array, "from");
+
+reportCompare(0, 0);