From 1f30c1d038ba7146f3fb01f0bdf9c85b016f183d Mon Sep 17 00:00:00 2001 From: Darren Scerri Date: Fri, 10 Nov 2017 09:03:02 +0100 Subject: [PATCH] Move to separate is.boundFunction test --- source/tests/test.ts | 3 +++ 1 file changed, 3 insertions(+) diff --git a/source/tests/test.ts b/source/tests/test.ts index 9d2772e..a24f535 100644 --- a/source/tests/test.ts +++ b/source/tests/test.ts @@ -370,6 +370,9 @@ test('is.array', t => { test('is.function', t => { testType(t, 'function', ['generatorFunction', 'asyncFunction', 'boundFunction']); +}); + +test('is.boundFunction', t => { t.false(m.boundFunction(function () {})); // tslint:disable-line:no-empty only-arrow-functions });