Skip to content

Commit

Permalink
coverage
Browse files Browse the repository at this point in the history
  • Loading branch information
phated committed Mar 16, 2024
1 parent ead49a9 commit 4bc795f
Showing 1 changed file with 10 additions and 0 deletions.
10 changes: 10 additions & 0 deletions test/array_find.js
@@ -0,0 +1,10 @@
var expect = require('expect');

var arrayFind = require('../lib/array_find');

describe('buildConfigName', function () {
it('returns undefined if called with non-array', function (done) {
expect(arrayFind({})).toEqual(undefined);
done();
});
});

0 comments on commit 4bc795f

Please sign in to comment.