mirror of https://github.com/tc39/test262.git
22 lines
496 B
JavaScript
22 lines
496 B
JavaScript
// Copyright 2014 Cubane Canada, Inc. All rights reserved.
|
|
// See LICENSE for details.
|
|
|
|
/*---
|
|
es6id: S25.4.4.3_A5.1_T1
|
|
author: Sam Mikes
|
|
description: Promise.race([]) never settles
|
|
flags: [async]
|
|
---*/
|
|
|
|
var p = Promise.race([]);
|
|
|
|
p.then(function() {
|
|
$ERROR("Never settles.");
|
|
}, function() {
|
|
$ERROR("Never settles.");
|
|
}).then($DONE, $DONE);
|
|
|
|
// use three 'then's to allow above to settle
|
|
// if this is a buggy Promise.race implementation
|
|
Promise.resolve().then().then().then($DONE, $DONE);
|