2014-10-23 19:58:31 +02:00
|
|
|
// 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
|
2015-02-10 22:01:39 +01:00
|
|
|
es6id: S25.4.4.3_A3.1_T1
|
2014-10-23 19:58:31 +02:00
|
|
|
author: Sam Mikes
|
|
|
|
description: Promise.race throws if 'this' does not conform to Promise constructor
|
|
|
|
---*/
|
|
|
|
|
|
|
|
function ZeroArgConstructor() {
|
|
|
|
}
|
|
|
|
|
2015-06-26 20:56:43 +02:00
|
|
|
assert.throws(TypeError, function() {
|
|
|
|
Promise.race.call(ZeroArgConstructor, [3]);
|
|
|
|
});
|