summaryrefslogtreecommitdiff
path: root/test/built-ins/Promise/prototype/race/S25.4.4.3_A3.1_T1.js
blob: 824712c0419ac143550b9c72a76366c876b756cb (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
// 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
author: Sam Mikes
description: Promise.race throws if 'this' does not conform to Promise constructor
negative: TypeError
---*/

function ZeroArgConstructor() {
}

Promise.race.call(ZeroArgConstructor, [3]);