📄 index.js
/home/palash/git/site/node_modules/es-array-method-boxes-properly/test/index.js
Language: js • Lines: 11
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();
});