You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 

24 lines
578 B

var os = require('os')
var path = require('path')
var Mocha = require('mocha')
var walk = require('./lib/walk/')
var mocha = new Mocha({
ui: 'bdd',
reporter: 'dot',
timeout: 30000
})
walk('./lib')
.on('data', function (item, stat) {
if (!stat.isFile()) return
if (item.lastIndexOf('.test.js') !== (item.length - '.test.js'.length)) return
mocha.addFile(item)
})
.on('end', function () {
mocha.run(function (failures) {
require('./').remove(path.join(os.tmpdir(), 'fs-extra'), function () {
process.exit(failures)
})
})
})