summaryrefslogtreecommitdiffstats
path: root/js/src/tests/test262/built-ins/Promise/allSettled/is-function.js
blob: daf7e13c2382e57e187a765679cc52bebfdc097c (plain)
1
2
3
4
5
6
7
8
9
10
11
12
// Copyright (C) 2019 Leo Balter. All rights reserved.
// This code is governed by the BSD license found in the LICENSE file.

/*---
esid: sec-promise.allsettled
description: Promise.allSettled is callable
features: [Promise.allSettled]
---*/

assert.sameValue(typeof Promise.allSettled, 'function');

reportCompare(0, 0);