summaryrefslogtreecommitdiffstats
path: root/js/src/tests/test262/built-ins/Promise/resolve/S25.4.4.5_A4.1_T1.js
blob: 25b8acf3a2832ad2e51df6fe58562bea763f3950 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
// |reftest| async
// Copyright 2014 Cubane Canada, Inc.  All rights reserved.
// See LICENSE for details.

/*---
info: |
    Section 25.4.1.4.2
es6id: S25.4.4.5_A3.1_T1
author: Sam Mikes
description: self-resolved Promise throws TypeError
flags: [async]
---*/

var resolveP,
  p = new Promise(function(resolve) {
    resolveP = resolve;
  });

resolveP(p);

p.then(function() {
  throw new Test262Error("Should not fulfill: should reject with TypeError.");
}, function(err) {
  assert(!!(err instanceof TypeError), 'The value of !!(err instanceof TypeError) is expected to be true');
}).then($DONE, $DONE);