mirror of
https://github.com/xlorepdarkhelm/numinar-coding-project.git
synced 2026-09-06 06:38:25 -04:00
13 lines
181 B
JavaScript
13 lines
181 B
JavaScript
'use strict';
|
|
|
|
var test = require('tape');
|
|
|
|
var index = require('../');
|
|
var runTests = require('./tests');
|
|
|
|
test('as a function', function (t) {
|
|
runTests(index, t);
|
|
|
|
t.end();
|
|
});
|