blob: 2093f8bee4a948bfeff390f013c062ba36ad1dad [file] [log] [blame]
// 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);