auth-api/tests/node_modules/tape/example/stream/test/y.js
2021-06-23 22:30:45 +02:00

14 lines
189 B
JavaScript

'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();
});