Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

[Merged by Bors] - Bump test262 from d216cc1 to 9704d7f #2654

Closed
wants to merge 2 commits into from
Closed
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion test262
Submodule test262 updated 57 files
+62 −205 features.txt
+2 −1 harness/temporalHelpers.js
+44 −0 test/built-ins/Array/fromAsync/asyncitems-array-add-to-empty.js
+43 −0 test/built-ins/Array/fromAsync/asyncitems-array-add-to-singleton.js
+43 −0 test/built-ins/Array/fromAsync/asyncitems-array-add.js
+44 −0 test/built-ins/Array/fromAsync/asyncitems-array-mutate.js
+43 −0 test/built-ins/Array/fromAsync/asyncitems-array-remove.js
+17 −0 test/built-ins/Array/fromAsync/asyncitems-arraybuffer.js
+31 −0 test/built-ins/Array/fromAsync/asyncitems-arraylike-promise.js
+32 −0 test/built-ins/Array/fromAsync/asyncitems-asynciterator-exists.js
+19 −0 test/built-ins/Array/fromAsync/asyncitems-asynciterator-not-callable.js
+30 −0 test/built-ins/Array/fromAsync/asyncitems-asynciterator-null.js
+32 −0 test/built-ins/Array/fromAsync/asyncitems-asynciterator-sync.js
+16 −0 test/built-ins/Array/fromAsync/asyncitems-asynciterator-throws.js
+20 −0 test/built-ins/Array/fromAsync/asyncitems-bigint.js
+20 −0 test/built-ins/Array/fromAsync/asyncitems-boolean.js
+21 −0 test/built-ins/Array/fromAsync/asyncitems-function.js
+33 −0 test/built-ins/Array/fromAsync/asyncitems-iterator-exists.js
+19 −0 test/built-ins/Array/fromAsync/asyncitems-iterator-not-callable.js
+30 −0 test/built-ins/Array/fromAsync/asyncitems-iterator-null.js
+33 −0 test/built-ins/Array/fromAsync/asyncitems-iterator-promise.js
+16 −0 test/built-ins/Array/fromAsync/asyncitems-iterator-throws.js
+18 −0 test/built-ins/Array/fromAsync/asyncitems-null-undefined.js
+20 −0 test/built-ins/Array/fromAsync/asyncitems-number.js
+30 −0 test/built-ins/Array/fromAsync/asyncitems-operations.js
+16 −0 test/built-ins/Array/fromAsync/asyncitems-string.js
+20 −0 test/built-ins/Array/fromAsync/asyncitems-symbol.js
+35 −0 test/built-ins/Array/fromAsync/mapfn-async-arraylike.js
+35 −0 test/built-ins/Array/fromAsync/mapfn-async-iterable-async.js
+35 −0 test/built-ins/Array/fromAsync/mapfn-async-iterable-sync.js
+40 −0 test/built-ins/Array/fromAsync/mapfn-async-throws-close-async-iterator.js
+40 −0 test/built-ins/Array/fromAsync/mapfn-async-throws-close-sync-iterator.js
+23 −0 test/built-ins/Array/fromAsync/mapfn-async-throws.js
+25 −0 test/built-ins/Array/fromAsync/mapfn-not-callable.js
+47 −0 test/built-ins/Array/fromAsync/mapfn-result-awaited-once-per-iteration.js
+35 −0 test/built-ins/Array/fromAsync/mapfn-sync-arraylike.js
+33 −0 test/built-ins/Array/fromAsync/mapfn-sync-iterable-async.js
+33 −0 test/built-ins/Array/fromAsync/mapfn-sync-iterable-sync.js
+39 −0 test/built-ins/Array/fromAsync/mapfn-sync-throws-close-async-iterator.js
+39 −0 test/built-ins/Array/fromAsync/mapfn-sync-throws-close-sync-iterator.js
+22 −0 test/built-ins/Array/fromAsync/mapfn-sync-throws.js
+21 −0 test/built-ins/Array/fromAsync/thisarg-object.js
+33 −0 test/built-ins/Array/fromAsync/thisarg-omitted-sloppy.js
+28 −0 test/built-ins/Array/fromAsync/thisarg-omitted-strict.js
+75 −0 test/built-ins/Array/fromAsync/thisarg-primitive-sloppy.js
+49 −0 test/built-ins/Array/fromAsync/thisarg-primitive-strict.js
+16 −0 test/built-ins/Temporal/Calendar/prototype/dateFromFields/one-of-era-erayear-undefined.js
+16 −0 test/built-ins/Temporal/Calendar/prototype/monthDayFromFields/one-of-era-erayear-undefined.js
+16 −0 test/built-ins/Temporal/Calendar/prototype/yearMonthFromFields/one-of-era-erayear-undefined.js
+19 −0 test/intl402/Temporal/Calendar/prototype/dateFromFields/one-of-era-erayear-undefined.js
+6 −6 test/intl402/Temporal/Calendar/prototype/mergeFields/gregorian-mutually-exclusive-fields.js
+6 −6 test/intl402/Temporal/Calendar/prototype/mergeFields/japanese-mutually-exclusive-fields.js
+19 −0 test/intl402/Temporal/Calendar/prototype/monthDayFromFields/one-of-era-erayear-undefined.js
+19 −0 test/intl402/Temporal/Calendar/prototype/yearMonthFromFields/one-of-era-erayear-undefined.js
+5 −2 tools/lint/lib/checks/features.py
+2 −1 tools/lint/test/fixtures/features.txt
+1 −1 tools/lint/test/run.py
2 changes: 2 additions & 0 deletions test_ignore.toml
Original file line number Diff line number Diff line change
Expand Up @@ -31,6 +31,8 @@ features = [
"Intl.Locale-info",
# https://github.com/tc39/proposal-intl-enumeration
"Intl-enumeration",
# https://github.com/tc39/proposal-array-from-async
"Array.fromAsync",

# Non-standard
"caller",
Expand Down