no_cleanup_on_exit.spec.js 298 B

1234567891011
  1. var temp = require('temp');
  2. temp.track();
  3. console.log('Doing something');
  4. describe('temp will create dir that will remain after the process exits', function() {
  5. it('creates a dir', function() {
  6. var p = temp.mkdirSync("shouldBeDeletedOnExit");
  7. console.log('created dir ' + p);
  8. });
  9. });