astro-ghostcms/.pnpm-store/v3/files/3e/4ec1e64c6b671d4fc693232be2c...

12 lines
289 B
Plaintext

var test = require('tape');
var arrayMethodBoxesProperly = require('..');
test('arrayMethodBoxesProperly', function (t) {
t.equal(typeof arrayMethodBoxesProperly, 'function', 'is a function');
t.equal(typeof arrayMethodBoxesProperly(), 'boolean', 'returns a boolean');
t.end();
});