diff --git a/test/isNonEmptyArray.js b/test/isNonEmptyArray.js index a106d9ee68..f29ab6d294 100644 --- a/test/isNonEmptyArray.js +++ b/test/isNonEmptyArray.js @@ -1,8 +1,9 @@ import * as RA from '../src/index'; import eq from './shared/eq'; -describe('isNonEmptyArray', function() { - it('tests a value to be a non empty `Array`', function() { + +describe('isNonEmptyArray', function () { + it('tests a value to be a non empty `Array`', function () { eq(RA.isNonEmptyArray([42]), true); eq(RA.isNonEmptyArray(new Array('content')), true);