diff --git a/test/suite/es6/Array.prototype.find/Array.prototype.find_callable-predicate.js b/test/suite/es6/Array.prototype.find/Array.prototype.find_callable-predicate.js index 219fb79ab675bc0961b9b909ea06a82715004500..debf13f88b162f58875c80b4e8e9c1e9f881744e 100644 --- a/test/suite/es6/Array.prototype.find/Array.prototype.find_callable-predicate.js +++ b/test/suite/es6/Array.prototype.find/Array.prototype.find_callable-predicate.js @@ -5,7 +5,6 @@ description: > Array.prototype.find shouldn't throw a TypeError if IsCallable(predicate) is true -flags: [path] includes: [runTestCase.js] ---*/ diff --git a/test/suite/es6/Array.prototype.find/Array.prototype.find_empty-array-undefined.js b/test/suite/es6/Array.prototype.find/Array.prototype.find_empty-array-undefined.js index b98be4f17c87b5f6387109407e74bcfcb4c2433a..5a753b80c6f3be3af4b56db1629b3fcf6760a3b6 100644 --- a/test/suite/es6/Array.prototype.find/Array.prototype.find_empty-array-undefined.js +++ b/test/suite/es6/Array.prototype.find/Array.prototype.find_empty-array-undefined.js @@ -3,7 +3,6 @@ /*--- description: Find on empty array should return undefined -flags: [path] ---*/ var a = [].find(function () { diff --git a/test/suite/es6/Array.prototype.find/Array.prototype.find_length-property.js b/test/suite/es6/Array.prototype.find/Array.prototype.find_length-property.js index ae30d483a804d60bebc666562cf6c340de3a0f0c..4fc9dde8436b4b8355fdaeb8327a8e28281a639b 100644 --- a/test/suite/es6/Array.prototype.find/Array.prototype.find_length-property.js +++ b/test/suite/es6/Array.prototype.find/Array.prototype.find_length-property.js @@ -3,7 +3,6 @@ /*--- description: The length property of the find method is 1 -flags: [path] ---*/ if ([].find.length !== 1) { diff --git a/test/suite/es6/Array.prototype.find/Array.prototype.find_modify-after-start.js b/test/suite/es6/Array.prototype.find/Array.prototype.find_modify-after-start.js index 4efc24fee6dcc83fc1eb7e8263a4e2c37d96a4ef..568e67f0c9eff03fd3aba5b2c9b5d0e385a49d6f 100644 --- a/test/suite/es6/Array.prototype.find/Array.prototype.find_modify-after-start.js +++ b/test/suite/es6/Array.prototype.find/Array.prototype.find_modify-after-start.js @@ -3,7 +3,6 @@ /*--- description: Array may be mutated by calls to the predicate -flags: [path] ---*/ [1, 2, 3].find(function (v, i, arr) { diff --git a/test/suite/es6/Array.prototype.find/Array.prototype.find_non-returning-predicate.js b/test/suite/es6/Array.prototype.find/Array.prototype.find_non-returning-predicate.js index bccdea5f4fc98c691f7eb7df6e48f078c6a533f9..df72d4a287295aab698a02eaa0efa1ed49b3533d 100644 --- a/test/suite/es6/Array.prototype.find/Array.prototype.find_non-returning-predicate.js +++ b/test/suite/es6/Array.prototype.find/Array.prototype.find_non-returning-predicate.js @@ -3,7 +3,6 @@ /*--- description: Find with a predicate with no return value should return undefined -flags: [path] ---*/ var a = [1, 2, 3].find(function () {}); diff --git a/test/suite/es6/Array.prototype.find/Array.prototype.find_noncallable-predicate.js b/test/suite/es6/Array.prototype.find/Array.prototype.find_noncallable-predicate.js index 320515368c6290bb26ffa2538e3bdda89ef866bb..9479153c73ea0176f3525b729976f82472d3e7a8 100644 --- a/test/suite/es6/Array.prototype.find/Array.prototype.find_noncallable-predicate.js +++ b/test/suite/es6/Array.prototype.find/Array.prototype.find_noncallable-predicate.js @@ -5,7 +5,6 @@ description: > Array.prototype.find should throw a TypeError if IsCallable(predicate) is false -flags: [path] includes: [runTestCase.js] ---*/ diff --git a/test/suite/es6/Array.prototype.find/Array.prototype.find_predicate-arguments.js b/test/suite/es6/Array.prototype.find/Array.prototype.find_predicate-arguments.js index 81cecf94d90d377001ace8a524a8f1b61d302497..defde032554b3719930050246e5498be381c31f1 100644 --- a/test/suite/es6/Array.prototype.find/Array.prototype.find_predicate-arguments.js +++ b/test/suite/es6/Array.prototype.find/Array.prototype.find_predicate-arguments.js @@ -5,7 +5,6 @@ description: > predicate is called with three arguments: the value of the element, the index of the element, and the object being traversed. -flags: [path] ---*/ var a = [1]; diff --git a/test/suite/es6/Array.prototype.find/Array.prototype.find_push-after-start.js b/test/suite/es6/Array.prototype.find/Array.prototype.find_push-after-start.js index 88bccb87f7a5c2c85bc222541b47efe9c9af580b..b3ff10c5a8062fc35ae3844bfd3dd066a614fa32 100644 --- a/test/suite/es6/Array.prototype.find/Array.prototype.find_push-after-start.js +++ b/test/suite/es6/Array.prototype.find/Array.prototype.find_push-after-start.js @@ -5,7 +5,6 @@ description: > Elements added to array after find has been called should not be visited -flags: [path] ---*/ [1].find(function (v, i, arr) { diff --git a/test/suite/es6/Array.prototype.find/Array.prototype.find_remove-after-start.js b/test/suite/es6/Array.prototype.find/Array.prototype.find_remove-after-start.js index b625d7ac9c673d21b48eb3eed34dbb034646775f..a788f0e85ef978a8eb4c0e6a216dd8206ee75ce5 100644 --- a/test/suite/es6/Array.prototype.find/Array.prototype.find_remove-after-start.js +++ b/test/suite/es6/Array.prototype.find/Array.prototype.find_remove-after-start.js @@ -5,7 +5,6 @@ description: > Elements removed from array after find has been called should not be visited -flags: [path] ---*/ [1, 'string', 2].find(function (v, i, arr) { diff --git a/test/suite/es6/Array.prototype.find/Array.prototype.find_return-found-value.js b/test/suite/es6/Array.prototype.find/Array.prototype.find_return-found-value.js index f44f7afd2b77220db32f0d79810e8b5eecd08dd1..2731a09b7ff483e82463fd9be8671e5ea618bf81 100644 --- a/test/suite/es6/Array.prototype.find/Array.prototype.find_return-found-value.js +++ b/test/suite/es6/Array.prototype.find/Array.prototype.find_return-found-value.js @@ -3,7 +3,6 @@ /*--- description: Find should return value if predicate returns true -flags: [path] ---*/ var testVals = [ diff --git a/test/suite/es6/Array.prototype.find/Array.prototype.find_skip-empty.js b/test/suite/es6/Array.prototype.find/Array.prototype.find_skip-empty.js index b00ee1eeb9e203c49170b47237940b8f3473f224..c935e2fd33ca1491d28383fa5c3dddf283937ce3 100644 --- a/test/suite/es6/Array.prototype.find/Array.prototype.find_skip-empty.js +++ b/test/suite/es6/Array.prototype.find/Array.prototype.find_skip-empty.js @@ -5,7 +5,6 @@ description: > predicate is called only for elements of the array which actually exist; it is not called for missing elements of the array -flags: [path] ---*/ var a = []; diff --git a/test/suite/es6/Array.prototype.find/Array.prototype.find_this-defined.js b/test/suite/es6/Array.prototype.find/Array.prototype.find_this-defined.js index acc8ba7c39d8f327228c8478120194315e31f1f3..88bf029cde9778f8339aab59c290bf5a811a8363 100644 --- a/test/suite/es6/Array.prototype.find/Array.prototype.find_this-defined.js +++ b/test/suite/es6/Array.prototype.find/Array.prototype.find_this-defined.js @@ -3,7 +3,6 @@ /*--- description: thisArg should be bound to this if provided -flags: [path] ---*/ var globalThis = this; diff --git a/test/suite/es6/Array.prototype.find/Array.prototype.find_this-is-object.js b/test/suite/es6/Array.prototype.find/Array.prototype.find_this-is-object.js index 6fc7a4410c2c34f06b0f0b856feaadd355afe3a4..df99acc48dbcc59c5313d475f1c78e23e4136f28 100644 --- a/test/suite/es6/Array.prototype.find/Array.prototype.find_this-is-object.js +++ b/test/suite/es6/Array.prototype.find/Array.prototype.find_this-is-object.js @@ -3,7 +3,6 @@ /*--- description: Array.prototype.find should convert thisArg into an object -flags: [path] ---*/ var dataTypes = [ diff --git a/test/suite/es6/Array.prototype.find/Array.prototype.find_this-undefined.js b/test/suite/es6/Array.prototype.find/Array.prototype.find_this-undefined.js index 969a588edfdaa7b39a4832b8de41f294ea98ae56..eede30e89aa2a75e95cda98c5cf546099903bfa9 100644 --- a/test/suite/es6/Array.prototype.find/Array.prototype.find_this-undefined.js +++ b/test/suite/es6/Array.prototype.find/Array.prototype.find_this-undefined.js @@ -3,7 +3,6 @@ /*--- description: thisArg should be undefined if not provided -flags: [path] ---*/ var globalThis = this;