http/test/index.spec.js

10 lines
184 B
JavaScript

const test = require('tape');
const index = require('../src/index.js');
test('Index', function(t) {
t.test('setup', function(t) {
t.ok(true);
t.end();
});
});