travel/admin/node_modules/es-array-method-boxes-properly/test/index.js

12 lines
289 B
JavaScript
Raw Normal View History

2024-06-24 11:28:18 +08:00
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();
});