Book a Demo!
CoCalc Logo Icon
StoreFeaturesDocsShareSupportNewsAboutPoliciesSign UpSign In
Download
80713 views
1
var Glob = require('../glob.js').Glob;
2
var test = require('tap').test;
3
4
test('new glob, with cb, and no options', function (t) {
5
new Glob(__filename, function(er, results) {
6
if (er) throw er;
7
t.same(results, [__filename]);
8
t.end();
9
});
10
});
11
12