Pathologic was missing because of a .git folder inside.
[yaffs-website] / node_modules / temp / no_cleanup_on_exit.js
1 var temp = require('temp').track();
2
3 describe('temp will create dir that will remain after the process exits', function() {
4   it('creates a dir', function() {
5     var p = temp.mkdirSync("shouldBeDeletedOnExit");
6     console.log('created dir ' + p);
7   });
8 });