feat: remove deprecated utils.walk

This commit is contained in:
Barış Soner Uşaklı
2020-07-24 14:29:08 -04:00
parent b714ed22e7
commit 609e37a67b
2 changed files with 0 additions and 14 deletions

View File

@@ -399,14 +399,6 @@ describe('Utility Methods', function () {
done();
});
it('should walk directory', function (done) {
utils.walk(__dirname, function (err, data) {
assert.ifError(err);
assert(Array.isArray(data));
done();
});
});
it('should profile function', function (done) {
var st = process.hrtime();
setTimeout(function () {