summaryrefslogtreecommitdiff
path: root/test/built-ins/TypedArray/prototype/findIndex
diff options
context:
space:
mode:
Diffstat (limited to 'test/built-ins/TypedArray/prototype/findIndex')
-rw-r--r--test/built-ins/TypedArray/prototype/findIndex/BigInt/get-length-ignores-length-prop.js1
-rw-r--r--test/built-ins/TypedArray/prototype/findIndex/BigInt/invoked-as-func.js2
-rw-r--r--test/built-ins/TypedArray/prototype/findIndex/BigInt/invoked-as-method.js2
-rw-r--r--test/built-ins/TypedArray/prototype/findIndex/BigInt/length.js2
-rw-r--r--test/built-ins/TypedArray/prototype/findIndex/BigInt/name.js2
-rw-r--r--test/built-ins/TypedArray/prototype/findIndex/BigInt/predicate-call-changes-value.js1
-rw-r--r--test/built-ins/TypedArray/prototype/findIndex/BigInt/predicate-call-parameters.js1
-rw-r--r--test/built-ins/TypedArray/prototype/findIndex/BigInt/predicate-call-this-non-strict.js1
-rw-r--r--test/built-ins/TypedArray/prototype/findIndex/BigInt/predicate-call-this-strict.js1
-rw-r--r--test/built-ins/TypedArray/prototype/findIndex/BigInt/predicate-is-not-callable-throws.js1
-rw-r--r--test/built-ins/TypedArray/prototype/findIndex/BigInt/predicate-may-detach-buffer.js1
-rw-r--r--test/built-ins/TypedArray/prototype/findIndex/BigInt/predicate-not-called-on-empty-array.js1
-rw-r--r--test/built-ins/TypedArray/prototype/findIndex/BigInt/prop-desc.js2
-rw-r--r--test/built-ins/TypedArray/prototype/findIndex/BigInt/return-abrupt-from-predicate-call.js1
-rw-r--r--test/built-ins/TypedArray/prototype/findIndex/BigInt/return-index-predicate-result-is-true.js1
-rw-r--r--test/built-ins/TypedArray/prototype/findIndex/BigInt/return-negative-one-if-predicate-returns-false-value.js1
-rw-r--r--test/built-ins/TypedArray/prototype/findIndex/get-length-ignores-length-prop.js1
-rw-r--r--test/built-ins/TypedArray/prototype/findIndex/invoked-as-func.js2
-rw-r--r--test/built-ins/TypedArray/prototype/findIndex/invoked-as-method.js2
-rw-r--r--test/built-ins/TypedArray/prototype/findIndex/length.js2
-rw-r--r--test/built-ins/TypedArray/prototype/findIndex/name.js2
-rw-r--r--test/built-ins/TypedArray/prototype/findIndex/predicate-call-changes-value.js1
-rw-r--r--test/built-ins/TypedArray/prototype/findIndex/predicate-call-parameters.js1
-rw-r--r--test/built-ins/TypedArray/prototype/findIndex/predicate-call-this-non-strict.js1
-rw-r--r--test/built-ins/TypedArray/prototype/findIndex/predicate-call-this-strict.js1
-rw-r--r--test/built-ins/TypedArray/prototype/findIndex/predicate-is-not-callable-throws.js1
-rw-r--r--test/built-ins/TypedArray/prototype/findIndex/predicate-may-detach-buffer.js1
-rw-r--r--test/built-ins/TypedArray/prototype/findIndex/predicate-not-called-on-empty-array.js1
-rw-r--r--test/built-ins/TypedArray/prototype/findIndex/prop-desc.js2
-rw-r--r--test/built-ins/TypedArray/prototype/findIndex/return-abrupt-from-predicate-call.js1
-rw-r--r--test/built-ins/TypedArray/prototype/findIndex/return-index-predicate-result-is-true.js1
-rw-r--r--test/built-ins/TypedArray/prototype/findIndex/return-negative-one-if-predicate-returns-false-value.js1
32 files changed, 10 insertions, 32 deletions
diff --git a/test/built-ins/TypedArray/prototype/findIndex/BigInt/get-length-ignores-length-prop.js b/test/built-ins/TypedArray/prototype/findIndex/BigInt/get-length-ignores-length-prop.js
index 64ba1216f..47ea12773 100644
--- a/test/built-ins/TypedArray/prototype/findIndex/BigInt/get-length-ignores-length-prop.js
+++ b/test/built-ins/TypedArray/prototype/findIndex/BigInt/get-length-ignores-length-prop.js
@@ -2,7 +2,6 @@
// This code is governed by the BSD license found in the LICENSE file.
/*---
esid: sec-%typedarray%.prototype.findindex
-es6id: 22.2.3.11
description: >
[[Get]] of "length" uses [[ArrayLength]]
info: |
diff --git a/test/built-ins/TypedArray/prototype/findIndex/BigInt/invoked-as-func.js b/test/built-ins/TypedArray/prototype/findIndex/BigInt/invoked-as-func.js
index eec6d6341..f305556a1 100644
--- a/test/built-ins/TypedArray/prototype/findIndex/BigInt/invoked-as-func.js
+++ b/test/built-ins/TypedArray/prototype/findIndex/BigInt/invoked-as-func.js
@@ -1,7 +1,7 @@
// Copyright (C) 2016 the V8 project authors. All rights reserved.
// This code is governed by the BSD license found in the LICENSE file.
/*---
-es6id: 22.2.3.11
+esid: sec-%typedarray%.prototype.findindex
description: Throws a TypeError exception when invoked as a function
info: |
22.2.3.11 %TypedArray%.prototype.findIndex ( predicate [ , thisArg ] )
diff --git a/test/built-ins/TypedArray/prototype/findIndex/BigInt/invoked-as-method.js b/test/built-ins/TypedArray/prototype/findIndex/BigInt/invoked-as-method.js
index 73197eb1d..1871afdab 100644
--- a/test/built-ins/TypedArray/prototype/findIndex/BigInt/invoked-as-method.js
+++ b/test/built-ins/TypedArray/prototype/findIndex/BigInt/invoked-as-method.js
@@ -1,7 +1,7 @@
// Copyright (C) 2016 the V8 project authors. All rights reserved.
// This code is governed by the BSD license found in the LICENSE file.
/*---
-es6id: 22.2.3.11
+esid: sec-%typedarray%.prototype.findindex
description: Requires a [[TypedArrayName]] internal slot.
info: |
22.2.3.11 %TypedArray%.prototype.findIndex ( predicate [ , thisArg ] )
diff --git a/test/built-ins/TypedArray/prototype/findIndex/BigInt/length.js b/test/built-ins/TypedArray/prototype/findIndex/BigInt/length.js
index aeab6fc8e..55083eeb6 100644
--- a/test/built-ins/TypedArray/prototype/findIndex/BigInt/length.js
+++ b/test/built-ins/TypedArray/prototype/findIndex/BigInt/length.js
@@ -2,7 +2,7 @@
// This code is governed by the BSD license found in the LICENSE file.
/*---
-es6id: 22.2.3.11
+esid: sec-%typedarray%.prototype.findindex
description: >
%TypedArray%.prototype.findIndex.length is 1.
info: |
diff --git a/test/built-ins/TypedArray/prototype/findIndex/BigInt/name.js b/test/built-ins/TypedArray/prototype/findIndex/BigInt/name.js
index a0cc1c772..5065cb746 100644
--- a/test/built-ins/TypedArray/prototype/findIndex/BigInt/name.js
+++ b/test/built-ins/TypedArray/prototype/findIndex/BigInt/name.js
@@ -2,7 +2,7 @@
// This code is governed by the BSD license found in the LICENSE file.
/*---
-es6id: 22.2.3.11
+esid: sec-%typedarray%.prototype.findindex
description: >
%TypedArray%.prototype.findIndex.name is "findIndex".
info: |
diff --git a/test/built-ins/TypedArray/prototype/findIndex/BigInt/predicate-call-changes-value.js b/test/built-ins/TypedArray/prototype/findIndex/BigInt/predicate-call-changes-value.js
index 0dc15c76e..b3614e1e9 100644
--- a/test/built-ins/TypedArray/prototype/findIndex/BigInt/predicate-call-changes-value.js
+++ b/test/built-ins/TypedArray/prototype/findIndex/BigInt/predicate-call-changes-value.js
@@ -2,7 +2,6 @@
// This code is governed by the BSD license found in the LICENSE file.
/*---
esid: sec-%typedarray%.prototype.findindex
-es6id: 22.2.3.11
description: >
Change values during predicate call
info: |
diff --git a/test/built-ins/TypedArray/prototype/findIndex/BigInt/predicate-call-parameters.js b/test/built-ins/TypedArray/prototype/findIndex/BigInt/predicate-call-parameters.js
index e63adf53f..eb73cd7e1 100644
--- a/test/built-ins/TypedArray/prototype/findIndex/BigInt/predicate-call-parameters.js
+++ b/test/built-ins/TypedArray/prototype/findIndex/BigInt/predicate-call-parameters.js
@@ -2,7 +2,6 @@
// This code is governed by the BSD license found in the LICENSE file.
/*---
esid: sec-%typedarray%.prototype.findindex
-es6id: 22.2.3.11
description: >
Predicate called as F.call( thisArg, kValue, k, O ) for each array entry.
info: |
diff --git a/test/built-ins/TypedArray/prototype/findIndex/BigInt/predicate-call-this-non-strict.js b/test/built-ins/TypedArray/prototype/findIndex/BigInt/predicate-call-this-non-strict.js
index a4a8ab7eb..3c1d4b9f2 100644
--- a/test/built-ins/TypedArray/prototype/findIndex/BigInt/predicate-call-this-non-strict.js
+++ b/test/built-ins/TypedArray/prototype/findIndex/BigInt/predicate-call-this-non-strict.js
@@ -2,7 +2,6 @@
// This code is governed by the BSD license found in the LICENSE file.
/*---
esid: sec-%typedarray%.prototype.findindex
-es6id: 22.2.3.11
description: >
Verify predicate this on non-strict mode
info: |
diff --git a/test/built-ins/TypedArray/prototype/findIndex/BigInt/predicate-call-this-strict.js b/test/built-ins/TypedArray/prototype/findIndex/BigInt/predicate-call-this-strict.js
index 554a55aa0..af6ce6a73 100644
--- a/test/built-ins/TypedArray/prototype/findIndex/BigInt/predicate-call-this-strict.js
+++ b/test/built-ins/TypedArray/prototype/findIndex/BigInt/predicate-call-this-strict.js
@@ -2,7 +2,6 @@
// This code is governed by the BSD license found in the LICENSE file.
/*---
esid: sec-%typedarray%.prototype.findindex
-es6id: 22.2.3.11
description: >
Predicate thisArg as F.call( thisArg, kValue, k, O ) for each array entry.
info: |
diff --git a/test/built-ins/TypedArray/prototype/findIndex/BigInt/predicate-is-not-callable-throws.js b/test/built-ins/TypedArray/prototype/findIndex/BigInt/predicate-is-not-callable-throws.js
index 3a2143101..c8a101d05 100644
--- a/test/built-ins/TypedArray/prototype/findIndex/BigInt/predicate-is-not-callable-throws.js
+++ b/test/built-ins/TypedArray/prototype/findIndex/BigInt/predicate-is-not-callable-throws.js
@@ -2,7 +2,6 @@
// This code is governed by the BSD license found in the LICENSE file.
/*---
esid: sec-%typedarray%.prototype.findindex
-es6id: 22.2.3.11
description: >
Throws a TypeError exception if predicate is not callable.
info: |
diff --git a/test/built-ins/TypedArray/prototype/findIndex/BigInt/predicate-may-detach-buffer.js b/test/built-ins/TypedArray/prototype/findIndex/BigInt/predicate-may-detach-buffer.js
index 3bf9014ff..80078b3fe 100644
--- a/test/built-ins/TypedArray/prototype/findIndex/BigInt/predicate-may-detach-buffer.js
+++ b/test/built-ins/TypedArray/prototype/findIndex/BigInt/predicate-may-detach-buffer.js
@@ -2,7 +2,6 @@
// This code is governed by the BSD license found in the LICENSE file.
/*---
esid: sec-%typedarray%.prototype.findindex
-es6id: 22.2.3.11
description: >
Predicate may detach the buffer
info: |
diff --git a/test/built-ins/TypedArray/prototype/findIndex/BigInt/predicate-not-called-on-empty-array.js b/test/built-ins/TypedArray/prototype/findIndex/BigInt/predicate-not-called-on-empty-array.js
index a58100f03..a08e80ef5 100644
--- a/test/built-ins/TypedArray/prototype/findIndex/BigInt/predicate-not-called-on-empty-array.js
+++ b/test/built-ins/TypedArray/prototype/findIndex/BigInt/predicate-not-called-on-empty-array.js
@@ -2,7 +2,6 @@
// This code is governed by the BSD license found in the LICENSE file.
/*---
esid: sec-%typedarray%.prototype.findindex
-es6id: 22.2.3.11
description: >
Predicate is not called on an empty instance
info: |
diff --git a/test/built-ins/TypedArray/prototype/findIndex/BigInt/prop-desc.js b/test/built-ins/TypedArray/prototype/findIndex/BigInt/prop-desc.js
index a4bf542d7..7022cdd4e 100644
--- a/test/built-ins/TypedArray/prototype/findIndex/BigInt/prop-desc.js
+++ b/test/built-ins/TypedArray/prototype/findIndex/BigInt/prop-desc.js
@@ -1,7 +1,7 @@
// Copyright (C) 2016 the V8 project authors. All rights reserved.
// This code is governed by the BSD license found in the LICENSE file.
/*---
-es6id: 22.2.3.11
+esid: sec-%typedarray%.prototype.findindex
description: >
"findIndex" property of TypedArrayPrototype
info: |
diff --git a/test/built-ins/TypedArray/prototype/findIndex/BigInt/return-abrupt-from-predicate-call.js b/test/built-ins/TypedArray/prototype/findIndex/BigInt/return-abrupt-from-predicate-call.js
index 6994a7954..49405f3c5 100644
--- a/test/built-ins/TypedArray/prototype/findIndex/BigInt/return-abrupt-from-predicate-call.js
+++ b/test/built-ins/TypedArray/prototype/findIndex/BigInt/return-abrupt-from-predicate-call.js
@@ -2,7 +2,6 @@
// This code is governed by the BSD license found in the LICENSE file.
/*---
esid: sec-%typedarray%.prototype.findindex
-es6id: 22.2.3.11
description: >
Return abrupt from predicate call.
info: |
diff --git a/test/built-ins/TypedArray/prototype/findIndex/BigInt/return-index-predicate-result-is-true.js b/test/built-ins/TypedArray/prototype/findIndex/BigInt/return-index-predicate-result-is-true.js
index 0c979bd4f..f19c09910 100644
--- a/test/built-ins/TypedArray/prototype/findIndex/BigInt/return-index-predicate-result-is-true.js
+++ b/test/built-ins/TypedArray/prototype/findIndex/BigInt/return-index-predicate-result-is-true.js
@@ -2,7 +2,6 @@
// This code is governed by the BSD license found in the LICENSE file.
/*---
esid: sec-%typedarray%.prototype.findindex
-es6id: 22.2.3.11
description: >
Return index if predicate return a boolean true value.
info: |
diff --git a/test/built-ins/TypedArray/prototype/findIndex/BigInt/return-negative-one-if-predicate-returns-false-value.js b/test/built-ins/TypedArray/prototype/findIndex/BigInt/return-negative-one-if-predicate-returns-false-value.js
index 28001d77c..933985462 100644
--- a/test/built-ins/TypedArray/prototype/findIndex/BigInt/return-negative-one-if-predicate-returns-false-value.js
+++ b/test/built-ins/TypedArray/prototype/findIndex/BigInt/return-negative-one-if-predicate-returns-false-value.js
@@ -2,7 +2,6 @@
// This code is governed by the BSD license found in the LICENSE file.
/*---
esid: sec-%typedarray%.prototype.findindex
-es6id: 22.2.3.11
description: >
Return -1 if predicate always returns a boolean false value.
info: |
diff --git a/test/built-ins/TypedArray/prototype/findIndex/get-length-ignores-length-prop.js b/test/built-ins/TypedArray/prototype/findIndex/get-length-ignores-length-prop.js
index 697f3ef43..7aa5368e4 100644
--- a/test/built-ins/TypedArray/prototype/findIndex/get-length-ignores-length-prop.js
+++ b/test/built-ins/TypedArray/prototype/findIndex/get-length-ignores-length-prop.js
@@ -2,7 +2,6 @@
// This code is governed by the BSD license found in the LICENSE file.
/*---
esid: sec-%typedarray%.prototype.findindex
-es6id: 22.2.3.11
description: >
[[Get]] of "length" uses [[ArrayLength]]
info: |
diff --git a/test/built-ins/TypedArray/prototype/findIndex/invoked-as-func.js b/test/built-ins/TypedArray/prototype/findIndex/invoked-as-func.js
index 16a85a91d..54ca2a83c 100644
--- a/test/built-ins/TypedArray/prototype/findIndex/invoked-as-func.js
+++ b/test/built-ins/TypedArray/prototype/findIndex/invoked-as-func.js
@@ -1,7 +1,7 @@
// Copyright (C) 2016 the V8 project authors. All rights reserved.
// This code is governed by the BSD license found in the LICENSE file.
/*---
-es6id: 22.2.3.11
+esid: sec-%typedarray%.prototype.findindex
description: Throws a TypeError exception when invoked as a function
info: |
22.2.3.11 %TypedArray%.prototype.findIndex ( predicate [ , thisArg ] )
diff --git a/test/built-ins/TypedArray/prototype/findIndex/invoked-as-method.js b/test/built-ins/TypedArray/prototype/findIndex/invoked-as-method.js
index dfd2e8f25..d5ec6304f 100644
--- a/test/built-ins/TypedArray/prototype/findIndex/invoked-as-method.js
+++ b/test/built-ins/TypedArray/prototype/findIndex/invoked-as-method.js
@@ -1,7 +1,7 @@
// Copyright (C) 2016 the V8 project authors. All rights reserved.
// This code is governed by the BSD license found in the LICENSE file.
/*---
-es6id: 22.2.3.11
+esid: sec-%typedarray%.prototype.findindex
description: Requires a [[TypedArrayName]] internal slot.
info: |
22.2.3.11 %TypedArray%.prototype.findIndex ( predicate [ , thisArg ] )
diff --git a/test/built-ins/TypedArray/prototype/findIndex/length.js b/test/built-ins/TypedArray/prototype/findIndex/length.js
index f2d44b12b..49b360c54 100644
--- a/test/built-ins/TypedArray/prototype/findIndex/length.js
+++ b/test/built-ins/TypedArray/prototype/findIndex/length.js
@@ -2,7 +2,7 @@
// This code is governed by the BSD license found in the LICENSE file.
/*---
-es6id: 22.2.3.11
+esid: sec-%typedarray%.prototype.findindex
description: >
%TypedArray%.prototype.findIndex.length is 1.
info: |
diff --git a/test/built-ins/TypedArray/prototype/findIndex/name.js b/test/built-ins/TypedArray/prototype/findIndex/name.js
index c2113b623..6b77fdb45 100644
--- a/test/built-ins/TypedArray/prototype/findIndex/name.js
+++ b/test/built-ins/TypedArray/prototype/findIndex/name.js
@@ -2,7 +2,7 @@
// This code is governed by the BSD license found in the LICENSE file.
/*---
-es6id: 22.2.3.11
+esid: sec-%typedarray%.prototype.findindex
description: >
%TypedArray%.prototype.findIndex.name is "findIndex".
info: |
diff --git a/test/built-ins/TypedArray/prototype/findIndex/predicate-call-changes-value.js b/test/built-ins/TypedArray/prototype/findIndex/predicate-call-changes-value.js
index e2a0fab02..13c032fbb 100644
--- a/test/built-ins/TypedArray/prototype/findIndex/predicate-call-changes-value.js
+++ b/test/built-ins/TypedArray/prototype/findIndex/predicate-call-changes-value.js
@@ -2,7 +2,6 @@
// This code is governed by the BSD license found in the LICENSE file.
/*---
esid: sec-%typedarray%.prototype.findindex
-es6id: 22.2.3.11
description: >
Change values during predicate call
info: |
diff --git a/test/built-ins/TypedArray/prototype/findIndex/predicate-call-parameters.js b/test/built-ins/TypedArray/prototype/findIndex/predicate-call-parameters.js
index c19ccd1d9..ecb52b705 100644
--- a/test/built-ins/TypedArray/prototype/findIndex/predicate-call-parameters.js
+++ b/test/built-ins/TypedArray/prototype/findIndex/predicate-call-parameters.js
@@ -2,7 +2,6 @@
// This code is governed by the BSD license found in the LICENSE file.
/*---
esid: sec-%typedarray%.prototype.findindex
-es6id: 22.2.3.11
description: >
Predicate called as F.call( thisArg, kValue, k, O ) for each array entry.
info: |
diff --git a/test/built-ins/TypedArray/prototype/findIndex/predicate-call-this-non-strict.js b/test/built-ins/TypedArray/prototype/findIndex/predicate-call-this-non-strict.js
index 68175c781..5f6086b8f 100644
--- a/test/built-ins/TypedArray/prototype/findIndex/predicate-call-this-non-strict.js
+++ b/test/built-ins/TypedArray/prototype/findIndex/predicate-call-this-non-strict.js
@@ -2,7 +2,6 @@
// This code is governed by the BSD license found in the LICENSE file.
/*---
esid: sec-%typedarray%.prototype.findindex
-es6id: 22.2.3.11
description: >
Verify predicate this on non-strict mode
info: |
diff --git a/test/built-ins/TypedArray/prototype/findIndex/predicate-call-this-strict.js b/test/built-ins/TypedArray/prototype/findIndex/predicate-call-this-strict.js
index a4dd13ac2..96ef46098 100644
--- a/test/built-ins/TypedArray/prototype/findIndex/predicate-call-this-strict.js
+++ b/test/built-ins/TypedArray/prototype/findIndex/predicate-call-this-strict.js
@@ -2,7 +2,6 @@
// This code is governed by the BSD license found in the LICENSE file.
/*---
esid: sec-%typedarray%.prototype.findindex
-es6id: 22.2.3.11
description: >
Predicate thisArg as F.call( thisArg, kValue, k, O ) for each array entry.
info: |
diff --git a/test/built-ins/TypedArray/prototype/findIndex/predicate-is-not-callable-throws.js b/test/built-ins/TypedArray/prototype/findIndex/predicate-is-not-callable-throws.js
index 5b97bf74a..872c4ffe8 100644
--- a/test/built-ins/TypedArray/prototype/findIndex/predicate-is-not-callable-throws.js
+++ b/test/built-ins/TypedArray/prototype/findIndex/predicate-is-not-callable-throws.js
@@ -2,7 +2,6 @@
// This code is governed by the BSD license found in the LICENSE file.
/*---
esid: sec-%typedarray%.prototype.findindex
-es6id: 22.2.3.11
description: >
Throws a TypeError exception if predicate is not callable.
info: |
diff --git a/test/built-ins/TypedArray/prototype/findIndex/predicate-may-detach-buffer.js b/test/built-ins/TypedArray/prototype/findIndex/predicate-may-detach-buffer.js
index 831d296ce..6124bc3fb 100644
--- a/test/built-ins/TypedArray/prototype/findIndex/predicate-may-detach-buffer.js
+++ b/test/built-ins/TypedArray/prototype/findIndex/predicate-may-detach-buffer.js
@@ -2,7 +2,6 @@
// This code is governed by the BSD license found in the LICENSE file.
/*---
esid: sec-%typedarray%.prototype.findindex
-es6id: 22.2.3.11
description: >
Predicate may detach the buffer
info: |
diff --git a/test/built-ins/TypedArray/prototype/findIndex/predicate-not-called-on-empty-array.js b/test/built-ins/TypedArray/prototype/findIndex/predicate-not-called-on-empty-array.js
index e4fa770da..e6a4abb4a 100644
--- a/test/built-ins/TypedArray/prototype/findIndex/predicate-not-called-on-empty-array.js
+++ b/test/built-ins/TypedArray/prototype/findIndex/predicate-not-called-on-empty-array.js
@@ -2,7 +2,6 @@
// This code is governed by the BSD license found in the LICENSE file.
/*---
esid: sec-%typedarray%.prototype.findindex
-es6id: 22.2.3.11
description: >
Predicate is not called on an empty instance
info: |
diff --git a/test/built-ins/TypedArray/prototype/findIndex/prop-desc.js b/test/built-ins/TypedArray/prototype/findIndex/prop-desc.js
index 014d8284a..7824b34b8 100644
--- a/test/built-ins/TypedArray/prototype/findIndex/prop-desc.js
+++ b/test/built-ins/TypedArray/prototype/findIndex/prop-desc.js
@@ -1,7 +1,7 @@
// Copyright (C) 2016 the V8 project authors. All rights reserved.
// This code is governed by the BSD license found in the LICENSE file.
/*---
-es6id: 22.2.3.11
+esid: sec-%typedarray%.prototype.findindex
description: >
"findIndex" property of TypedArrayPrototype
info: |
diff --git a/test/built-ins/TypedArray/prototype/findIndex/return-abrupt-from-predicate-call.js b/test/built-ins/TypedArray/prototype/findIndex/return-abrupt-from-predicate-call.js
index df09745c1..1b01c8221 100644
--- a/test/built-ins/TypedArray/prototype/findIndex/return-abrupt-from-predicate-call.js
+++ b/test/built-ins/TypedArray/prototype/findIndex/return-abrupt-from-predicate-call.js
@@ -2,7 +2,6 @@
// This code is governed by the BSD license found in the LICENSE file.
/*---
esid: sec-%typedarray%.prototype.findindex
-es6id: 22.2.3.11
description: >
Return abrupt from predicate call.
info: |
diff --git a/test/built-ins/TypedArray/prototype/findIndex/return-index-predicate-result-is-true.js b/test/built-ins/TypedArray/prototype/findIndex/return-index-predicate-result-is-true.js
index 1e56448ca..572c284b9 100644
--- a/test/built-ins/TypedArray/prototype/findIndex/return-index-predicate-result-is-true.js
+++ b/test/built-ins/TypedArray/prototype/findIndex/return-index-predicate-result-is-true.js
@@ -2,7 +2,6 @@
// This code is governed by the BSD license found in the LICENSE file.
/*---
esid: sec-%typedarray%.prototype.findindex
-es6id: 22.2.3.11
description: >
Return index if predicate return a boolean true value.
info: |
diff --git a/test/built-ins/TypedArray/prototype/findIndex/return-negative-one-if-predicate-returns-false-value.js b/test/built-ins/TypedArray/prototype/findIndex/return-negative-one-if-predicate-returns-false-value.js
index 7a8b9d9e5..3ebf60868 100644
--- a/test/built-ins/TypedArray/prototype/findIndex/return-negative-one-if-predicate-returns-false-value.js
+++ b/test/built-ins/TypedArray/prototype/findIndex/return-negative-one-if-predicate-returns-false-value.js
@@ -2,7 +2,6 @@
// This code is governed by the BSD license found in the LICENSE file.
/*---
esid: sec-%typedarray%.prototype.findindex
-es6id: 22.2.3.11
description: >
Return -1 if predicate always returns a boolean false value.
info: |