mirror of
https://github.com/tc39/test262.git
synced 2025-04-08 19:35:28 +02:00
* Add constructor descriptor test * Rename & improve non-callable executor test * Rename & simplify executor call context tests * Remove duplicate reject via abrupt test * Deduplicate undefined NewTarget tests * Add basic constructor test * Add abrupt prototype getting tests
10 lines
281 B
JavaScript
10 lines
281 B
JavaScript
// Copyright (C) 2019 Aleksey Shvayka. All rights reserved.
|
|
// This code is governed by the BSD license found in the LICENSE file.
|
|
/*---
|
|
esid: sec-promise-executor
|
|
description: >
|
|
The Promise constructor is a built-in function
|
|
---*/
|
|
|
|
assert.sameValue(typeof Promise, 'function');
|