frontend/.pnpm-store/v3/files/3e/4ec1e64c6b671d4fc693232be2c730533a567ffe3a4294a36c1a2e85a84511d0f8fbc39c1eb03f125ab97826049258d9e849e00efa8998b21aa745388b1569

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