aboutsummaryrefslogtreecommitdiff
path: root/node_modules/walkdir/test/endearly.js
blob: a44aedf161be0f45f7704560e53a418d6e6c8b08 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
var test = require('tape'),
walk  = require('../walkdir.js');

test('should be able to end walk after first path',function(t){

  var paths = [];

  var em = walk('../',function(path){
    paths.push(path);
    this.end();
  });

  em.on('end',function(){
    t.equals(paths.length,1,'should have only found one path');
    t.end();
  });

});