mirror of https://github.com/tc39/test262.git
14 lines
343 B
JavaScript
14 lines
343 B
JavaScript
// Copyright 2014 Cubane Canada, Inc. All rights reserved.
|
|
// See LICENSE for details.
|
|
|
|
/*---
|
|
info: Promise.race is callable
|
|
es6id: S25.4.4.3_A1.1_T1
|
|
author: Sam Mikes
|
|
description: Promise.race is callable
|
|
---*/
|
|
|
|
if (typeof Promise.race !== "function") {
|
|
$ERROR("Expected Promise.race to be a function, actually " + typeof Promise.race);
|
|
}
|