mirror of
https://github.com/xlorepdarkhelm/numinar-coding-project.git
synced 2026-09-06 06:48:24 -04:00
12 lines
289 B
JavaScript
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();
|
|
});
|