add is callable test

This commit is contained in:
chicoxyzzy 2019-11-27 17:17:42 +03:00 committed by Rick Waldron
parent 88d058b59e
commit adcd162c10
1 changed files with 10 additions and 0 deletions

View File

@ -0,0 +1,10 @@
// Copyright (C) 2019 Sergey Rubanov. All rights reserved.
// This code is governed by the BSD license found in the LICENSE file.
/*---
esid: sec-promise.any
description: Promise.any is callable
features: [Promise.any]
---*/
assert.sameValue(typeof Promise.any, 'function');