mirror of
				https://github.com/tc39/test262.git
				synced 2025-11-03 21:24:30 +01:00 
			
		
		
		
	
		
			
				
	
	
		
			23 lines
		
	
	
		
			604 B
		
	
	
	
		
			JavaScript
		
	
	
	
	
	
			
		
		
	
	
			23 lines
		
	
	
		
			604 B
		
	
	
	
		
			JavaScript
		
	
	
	
	
	
// Copyright (C) 2020 Rick Waldron. All rights reserved.
 | 
						|
// This code is governed by the BSD license found in the LICENSE file.
 | 
						|
 | 
						|
/*---
 | 
						|
esid: sec-promise.any
 | 
						|
description: >
 | 
						|
  Promise.any resolves with the first item that does not reject.
 | 
						|
flags: [async]
 | 
						|
features: [Promise.any, arrow-function]
 | 
						|
---*/
 | 
						|
 | 
						|
let fulfillables = [
 | 
						|
  Promise.reject('a'),
 | 
						|
  new Promise((resolve, reject) => reject('b')),
 | 
						|
  Promise.all([Promise.reject('c')]),
 | 
						|
  Promise.resolve(Promise.reject('d').catch(v => v)),
 | 
						|
];
 | 
						|
 | 
						|
Promise.any(fulfillables)
 | 
						|
  .then((resolution) => {
 | 
						|
    assert.sameValue(resolution, 'd');
 | 
						|
  }).then($DONE, $DONE);
 |