auth-api/tests/node_modules/tape/example/stream/test/y.js

14 lines
189 B
JavaScript
Raw Normal View History

2021-06-23 22:30:45 +02:00
'use strict';
var test = require('../../../');
test(function (t) {
t.plan(2);
t.equal(1 + 1, 2);
t.ok(true);
});
test('wheee', function (t) {
t.ok(true);
t.end();
});