2014-10-23 19:58:31 +02:00
|
|
|
// Copyright 2014 Cubane Canada, Inc. All rights reserved.
|
|
|
|
// See LICENSE for details.
|
|
|
|
|
|
|
|
/*---
|
2018-01-05 18:26:51 +01:00
|
|
|
info: |
|
2014-10-23 19:58:31 +02:00
|
|
|
Promise.reject
|
2015-02-10 22:01:39 +01:00
|
|
|
es6id: S25.4.4.4_A1.1_T1
|
2014-10-23 19:58:31 +02:00
|
|
|
author: Sam Mikes
|
|
|
|
description: Promise.reject is a function
|
|
|
|
---*/
|
2021-08-18 17:44:54 +02:00
|
|
|
assert.sameValue(
|
|
|
|
typeof Promise.reject,
|
|
|
|
"function",
|
|
|
|
'The value of `typeof Promise.reject` is expected to be "function"'
|
|
|
|
);
|