diff options
Diffstat (limited to 'cli/js')
-rw-r--r-- | cli/js/40_testing.js | 4 |
1 files changed, 1 insertions, 3 deletions
diff --git a/cli/js/40_testing.js b/cli/js/40_testing.js index a34eb5aff..87567a17e 100644 --- a/cli/js/40_testing.js +++ b/cli/js/40_testing.js @@ -16,14 +16,12 @@ const { ArrayPrototypeShift, DateNow, Error, - FunctionPrototype, Map, MapPrototypeGet, MapPrototypeHas, MapPrototypeSet, MathCeil, ObjectKeys, - ObjectPrototypeIsPrototypeOf, Promise, SafeArrayIterator, Set, @@ -1294,7 +1292,7 @@ function createTestContext(desc) { let stepDesc; if (typeof nameOrFnOrOptions === "string") { - if (!(ObjectPrototypeIsPrototypeOf(FunctionPrototype, maybeFn))) { + if (typeof maybeFn !== "function") { throw new TypeError("Expected function for second argument."); } stepDesc = { |