mirror of https://github.com/tc39/test262.git
20 lines
514 B
JavaScript
20 lines
514 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
|
|
---*/
|
|
|
|
function ZeroArgConstructor() {
|
|
}
|
|
|
|
assert.throws(TypeError, function() {
|
|
Promise.race.call(ZeroArgConstructor, [3]);
|
|
});
|