mirror of https://github.com/tc39/test262.git
Fixed wrong `esid` and `features` in a Promise.all test
This commit is contained in:
parent
048b6b54ff
commit
68205eb76c
|
@ -4,7 +4,7 @@
|
||||||
/*---
|
/*---
|
||||||
description: >
|
description: >
|
||||||
Gets constructor's `resolve` method once from zero to many invocations.
|
Gets constructor's `resolve` method once from zero to many invocations.
|
||||||
esid: sec-promise.allsettled
|
esid: sec-promise.all
|
||||||
info: |
|
info: |
|
||||||
Runtime Semantics: PerformPromiseAll
|
Runtime Semantics: PerformPromiseAll
|
||||||
|
|
||||||
|
@ -14,7 +14,7 @@ info: |
|
||||||
1. Repeat,
|
1. Repeat,
|
||||||
...
|
...
|
||||||
1. Let nextPromise be ? Call(promiseResolve, constructor, « nextValue »).
|
1. Let nextPromise be ? Call(promiseResolve, constructor, « nextValue »).
|
||||||
features: [Promise.allSettled]
|
features: [Promise.all]
|
||||||
---*/
|
---*/
|
||||||
|
|
||||||
var resolve = Promise.resolve;
|
var resolve = Promise.resolve;
|
||||||
|
|
Loading…
Reference in New Issue