Index: test/mjsunit/es7/array-includes.js |
diff --git a/test/mjsunit/es7/array-includes.js b/test/mjsunit/es7/array-includes.js |
index 303042a4c10d0b7c5979d63d49cdb85375bb7186..3981797a7c91a0b2456ab8d185778939a7df0a65 100644 |
--- a/test/mjsunit/es7/array-includes.js |
+++ b/test/mjsunit/es7/array-includes.js |
@@ -673,3 +673,8 @@ |
assertFalse(Array.prototype.includes.call(new Uint8Array([1, 2, 3]), 4)); |
assertFalse(Array.prototype.includes.call(new Uint8Array([1, 2, 3]), 2, 2)); |
})(); |
+ |
+ |
+(function testUnscopable() { |
+ assertTrue(Array.prototype[Symbol.unscopables].includes); |
+})(); |