summaryrefslogtreecommitdiffstats
path: root/js/src/tests/test262/built-ins/Promise/prototype/then/rxn-handler-rejected-invoke-nonstrict.js
blob: 0b548a01f53eadf96ac55ea3f0b342fb1acde101 (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
26
27
28
29
30
31
32
33
34
35
36
37
38
// |reftest| async
// Copyright 2014 Cubane Canada, Inc.  All rights reserved.
// See LICENSE for details.

/*---
info: |
    [...]
    6. Else, let handlerResult be Call(handler, undefined, «argument»).
es6id: S25.4.2.1_A3.2_T1
author: Sam Mikes
description: >
    "rejected" handler invoked correctly outside of strict mode
flags: [async, noStrict]
---*/

var expectedThis = this,
  obj = {};

var p = Promise.reject(obj).then(function() {
  $DONE("Unexpected fulfillment; expected rejection.");
}, function(arg) {
  if (this !== expectedThis) {
    $DONE("'this' must be global object, got " + this);
    return;
  }

  if (arg !== obj) {
    $DONE("Expected promise to be rejected with obj, actually " + arg);
    return;
  }

  if (arguments.length !== 1) {
    $DONE('Expected handler function to be called with exactly 1 argument.');
    return;
  }

  $DONE();
});