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

22 lines
502 B
JavaScript
Raw Normal View History

// 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);