summaryrefslogtreecommitdiffstats
path: root/js/src/tests/test262/built-ins/Promise/prototype/S25.4.4.2_A1.1_T1.js
blob: 3c08a74243d0f6d38ef24944627bdc03a6270f7d (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
// Copyright 2014 Cubane Canada, Inc.  All rights reserved.
// See LICENSE for details.

/*---
info: |
    Promise prototype object exists, is object, not enumerable, writable,
    or configurable
es6id: S25.4.4.2_A1.1_T1
author: Sam Mikes
description: Promise prototype exists
---*/
assert.notSameValue(
  Promise.prototype,
  undefined,
  'The value of Promise.prototype is expected to not equal ``undefined``'
);

reportCompare(0, 0);