summaryrefslogtreecommitdiffstats
path: root/js/src/tests/test262/built-ins/Array/prototype/includes/this-is-not-object.js
diff options
context:
space:
mode:
Diffstat (limited to 'js/src/tests/test262/built-ins/Array/prototype/includes/this-is-not-object.js')
-rw-r--r--js/src/tests/test262/built-ins/Array/prototype/includes/this-is-not-object.js25
1 files changed, 25 insertions, 0 deletions
diff --git a/js/src/tests/test262/built-ins/Array/prototype/includes/this-is-not-object.js b/js/src/tests/test262/built-ins/Array/prototype/includes/this-is-not-object.js
new file mode 100644
index 0000000000..c19d2b24a3
--- /dev/null
+++ b/js/src/tests/test262/built-ins/Array/prototype/includes/this-is-not-object.js
@@ -0,0 +1,25 @@
+// Copyright (C) 2016 the V8 project authors. All rights reserved.
+// This code is governed by the BSD license found in the LICENSE file.
+/*---
+esid: sec-array.prototype.includes
+description: >
+ Throws a TypeError exception when `this` cannot be coerced to Object
+info: |
+ 22.1.3.11 Array.prototype.includes ( searchElement [ , fromIndex ] )
+
+ 1. Let O be ? ToObject(this value).
+ ...
+features: [Array.prototype.includes]
+---*/
+
+var includes = Array.prototype.includes;
+
+assert.throws(TypeError, function() {
+ includes.call(undefined, 42);
+}, "this is undefined");
+
+assert.throws(TypeError, function() {
+ includes.call(null, 42);
+}, "this is null");
+
+reportCompare(0, 0);