Skip to content

Commit

Permalink
Bump test262 from d216cc1 to 9704d7f (#2654)
Browse files Browse the repository at this point in the history
Bumps [test262](https://github.com/tc39/test262) from `d216cc1` to `9704d7f`.
<details>
<summary>Commits</summary>
<ul>
<li><a href="https://github.com/tc39/test262/commit/9704d7f22f6342d6c4753ab9a8d62d6725de8c4e"><code>9704d7f</code></a> Add tests for the asyncItems argument to Array.fromAsync. (<a href="https://redirect.github.com/tc39/test262/issues/3754">#3754</a>)</li>
<li><a href="https://github.com/tc39/test262/commit/53e5ef817eb212d0d4f6f0ab44275094e5bf876d"><code>53e5ef8</code></a> Add Temporal era/eraYear tests</li>
<li><a href="https://github.com/tc39/test262/commit/c4d8f01d3d4a9c1694fe5737346975c00a23521d"><code>c4d8f01</code></a> Array.fromAsync: Tests for mapfn and thisArg arguments</li>
<li><a href="https://github.com/tc39/test262/commit/ba1e51c8e7fdef31b939f1c10ddb1f118fe309a2"><code>ba1e51c</code></a> Fix function-valued properties in propertyBagObserver</li>
<li><a href="https://github.com/tc39/test262/commit/4f5eb40ee086135bb0fa2afa53062f6ebc449829"><code>4f5eb40</code></a> Temporal: Test updates for mergeFields output property order</li>
<li><a href="https://github.com/tc39/test262/commit/5ea8322b0858b82a30c8cfb4ef3f13f10b70f797"><code>5ea8322</code></a> Clarify feature flags are per proposal</li>
<li><a href="https://github.com/tc39/test262/commit/6bfcab106313a65a53c69783727542f16bb41fa7"><code>6bfcab1</code></a> Remove unused &quot;Intl.DateTimeFormat-quarter&quot; feature flag</li>
<li><a href="https://github.com/tc39/test262/commit/7a5210deafa13595c714f36f3d868966cac15686"><code>7a5210d</code></a> Clean up feature flags for proposals in published standard</li>
<li><a href="https://github.com/tc39/test262/commit/a58ae41ea7ab882fc1b3c818332f8172ba5f31bd"><code>a58ae41</code></a> linter: Fix parsing features.txt</li>
<li><a href="https://github.com/tc39/test262/commit/6e1b737357a3ec2a3bc9cf4314bba810cd6099d0"><code>6e1b737</code></a> linter: Use same Python interpreter when executing script in subprocess</li>
<li>See full diff in <a href="https://github.com/tc39/test262/compare/d216cc197269fc41eb6eca14710529c3d6650535...9704d7f22f6342d6c4753ab9a8d62d6725de8c4e">compare view</a></li>
</ul>
</details>
<br />


Dependabot will resolve any conflicts with this PR as long as you don't alter it yourself. You can also trigger a rebase manually by commenting `@dependabot rebase`.

[//]: # (dependabot-automerge-start)
[//]: # (dependabot-automerge-end)

---

<details>
<summary>Dependabot commands and options</summary>
<br />

You can trigger Dependabot actions by commenting on this PR:
- `@dependabot rebase` will rebase this PR
- `@dependabot recreate` will recreate this PR, overwriting any edits that have been made to it
- `@dependabot merge` will merge this PR after your CI passes on it
- `@dependabot squash and merge` will squash and merge this PR after your CI passes on it
- `@dependabot cancel merge` will cancel a previously requested merge and block automerging
- `@dependabot reopen` will reopen this PR if it is closed
- `@dependabot close` will close this PR and stop Dependabot recreating it. You can achieve the same result by closing it manually
- `@dependabot ignore this major version` will close this PR and stop Dependabot creating any more for this major version (unless you reopen the PR or upgrade to it yourself)
- `@dependabot ignore this minor version` will close this PR and stop Dependabot creating any more for this minor version (unless you reopen the PR or upgrade to it yourself)
- `@dependabot ignore this dependency` will close this PR and stop Dependabot creating any more for this dependency (unless you reopen the PR or upgrade to it yourself)


</details>

Co-authored-by: jedel1043 <jedel0124@gmail.com>
  • Loading branch information
dependabot[bot] and jedel1043 committed Mar 13, 2023
1 parent b138a30 commit e4365b5
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 1 deletion.
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

0 comments on commit e4365b5

Please sign in to comment.