test262/test/built-ins/Promise/race/S25.4.4.3_A3.1_T1.js

19 lines
490 B
JavaScript

// 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
negative: TypeError
---*/
function ZeroArgConstructor() {
}
Promise.race.call(ZeroArgConstructor, [3]);