Skip to content

Commit a28c80e

Browse files
committed
drop { Iterator, AsyncIterator }.prototype.indexed compat test since they removed from the proposal
1 parent 344e24a commit a28c80e

File tree

2 files changed

+2
-6
lines changed

2 files changed

+2
-6
lines changed

tests/compat-data/tests-coverage.mjs

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -22,9 +22,11 @@ const ignore = new Set([
2222
'esnext.array.last-index',
2323
'esnext.array.last-item',
2424
'esnext.async-iterator.as-indexed-pairs',
25+
'esnext.async-iterator.indexed',
2526
'esnext.bigint.range',
2627
'esnext.function.un-this',
2728
'esnext.iterator.as-indexed-pairs',
29+
'esnext.iterator.indexed',
2830
'esnext.map.update-or-insert',
2931
'esnext.map.upsert',
3032
'esnext.math.iaddh',

tests/compat/tests.js

Lines changed: 0 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -1502,9 +1502,6 @@ GLOBAL.tests = {
15021502
'esnext.async-iterator.from': function () {
15031503
return AsyncIterator.from;
15041504
},
1505-
'esnext.async-iterator.indexed': function () {
1506-
return AsyncIterator.prototype.indexed;
1507-
},
15081505
'esnext.async-iterator.map': function () {
15091506
return AsyncIterator.prototype.map;
15101507
},
@@ -1570,9 +1567,6 @@ GLOBAL.tests = {
15701567
'esnext.iterator.from': function () {
15711568
return Iterator.from;
15721569
},
1573-
'esnext.iterator.indexed': function () {
1574-
return Iterator.prototype.indexed;
1575-
},
15761570
'esnext.iterator.map': function () {
15771571
return Iterator.prototype.map;
15781572
},

0 commit comments

Comments
 (0)