test262/test/built-ins/Promise/any/ctx-ctor-throws.js

26 lines
558 B
JavaScript
Raw Normal View History

2019-11-27 14:36:09 +01:00
// Copyright (C) 2019 Sergey Rubanov. All rights reserved.
// This code is governed by the BSD license found in the LICENSE file.
/*---
description: >
Promise.any invoked on a constructor value that throws an error
esid: sec-promise.any
info: |
2. Let promiseCapability be ? NewPromiseCapability(C).
NewPromiseCapability
...
7. Let promise be ? Construct(C, « executor »).
2019-11-27 14:36:09 +01:00
features: [Promise.any]
---*/
2020-03-24 03:39:53 +01:00
function CustomPromise() {
2019-11-27 14:36:09 +01:00
throw new Test262Error();
2020-03-24 03:39:53 +01:00
}
2019-11-27 14:36:09 +01:00
assert.throws(Test262Error, function() {
Promise.any.call(CustomPromise);
});