Files
GNX-mailEnterprise/frontend/node_modules/es-array-method-boxes-properly/test/index.js
Iliyan Angelov c67067a2a4 Mail
2025-09-14 23:24:25 +03:00

12 lines
289 B
JavaScript

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