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

/*---
info: |
    Promise.race throws on invalid 'this'
    Note: must have at least one element in array, or else Promise.race
    never exercises the code that throws
es6id: S25.4.4.3_A3.1_T1
author: Sam Mikes
description: Promise.race throws if 'this' does not conform to Promise constructor
---*/

function ZeroArgConstructor() {}

assert.throws(TypeError, function() {
  Promise.race.call(ZeroArgConstructor, [3]);
});

reportCompare(0, 0);