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 });