auth-api/tests/node_modules/object-is/test/index.js

13 lines
181 B
JavaScript
Raw Normal View History

2021-06-23 22:30:45 +02:00
'use strict';
var index = require('../');
var test = require('tape');
var runTests = require('./tests');
test('as a function', function (t) {
runTests(index, t);
t.end();
});