FLUJOS/BACK_BACK/node_modules/es-array-method-boxes-properly/test/index.js
2025-11-07 00:06:12 +01:00

11 lines
289 B
JavaScript
Executable file

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