summaryrefslogtreecommitdiff
path: root/test/built-ins/Promise/prototype/S25.4.5_A3.1_T1.js
blob: c8719d738b2370ee1dc4b6269ee57ae58fb1281b (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
// Copyright 2014 Cubane Canada, Inc.  All rights reserved.
// See LICENSE for details.

/*---
info: |
    Promise.prototype.constructor is the Promise constructor
es6id: S25.4.5_A3.1_T1
author: Sam Mikes
description: Promise.prototype.constructor is the Promise constructor
---*/

if (Promise.prototype.constructor !== Promise) {
    $ERROR("Expected Promise.prototype.constructor to be Promise");
}