remove spurious flags: [path]

This commit is contained in:
Sam Mikes 2014-10-24 15:24:57 +01:00
parent e2b675f443
commit 5fbb0a3902
14 changed files with 0 additions and 14 deletions

View File

@ -5,7 +5,6 @@
description: >
Array.prototype.find shouldn't throw a TypeError if
IsCallable(predicate) is true
flags: [path]
includes: [runTestCase.js]
---*/

View File

@ -3,7 +3,6 @@
/*---
description: Find on empty array should return undefined
flags: [path]
---*/
var a = [].find(function () {

View File

@ -3,7 +3,6 @@
/*---
description: The length property of the find method is 1
flags: [path]
---*/
if ([].find.length !== 1) {

View File

@ -3,7 +3,6 @@
/*---
description: Array may be mutated by calls to the predicate
flags: [path]
---*/
[1, 2, 3].find(function (v, i, arr) {

View File

@ -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 () {});

View File

@ -5,7 +5,6 @@
description: >
Array.prototype.find should throw a TypeError if
IsCallable(predicate) is false
flags: [path]
includes: [runTestCase.js]
---*/

View File

@ -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];

View File

@ -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) {

View File

@ -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) {

View File

@ -3,7 +3,6 @@
/*---
description: Find should return value if predicate returns true
flags: [path]
---*/
var testVals = [

View File

@ -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 = [];

View File

@ -3,7 +3,6 @@
/*---
description: thisArg should be bound to this if provided
flags: [path]
---*/
var globalThis = this;

View File

@ -3,7 +3,6 @@
/*---
description: Array.prototype.find should convert thisArg into an object
flags: [path]
---*/
var dataTypes = [

View File

@ -3,7 +3,6 @@
/*---
description: thisArg should be undefined if not provided
flags: [path]
---*/
var globalThis = this;