This repository has been archived on 2022-03-12. You can view files and clone it, but cannot push or open issues or pull requests.
reValuate/node_modules/temp/no_cleanup_on_exit.spec.js
2021-04-02 02:24:13 +03:00

12 lines
298 B
JavaScript

var temp = require('temp');
temp.track();
console.log('Doing something');
describe('temp will create dir that will remain after the process exits', function() {
it('creates a dir', function() {
var p = temp.mkdirSync("shouldBeDeletedOnExit");
console.log('created dir ' + p);
});
});