Newer
Older
// Copyright 2014 Cubane Canada, Inc. All rights reserved.
// See LICENSE for details.
/*---
info: Promise.all is resolved with a new empty array
es6id: 25.4.4.1_A2.3_T2
description: Promise.all([]) returns a Promise for an empty array
var arg = [];
Promise.all(arg).then(function (result) {
if(result.length !== 0) {
$ERROR("expected an empty array from Promise.all([]), got " + result);
}