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

24 lines
548 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 non-constructor value
esid: sec-promise.any
info: |
...
2. Let promiseCapability be ? NewPromiseCapability(C).
NewPromiseCapability ( C )
1. If IsConstructor(C) is false, throw a TypeError exception.
2020-03-24 03:39:53 +01:00
features: [Promise.any, Symbol]
2019-11-27 14:36:09 +01:00
---*/
2020-03-24 03:39:53 +01:00
assert.sameValue(typeof Promise.any, 'function');
2019-11-27 14:36:09 +01:00
assert.throws(TypeError, function() {
Promise.any.call(eval);
});