Security update to Drupal 8.4.6
[yaffs-website] / node_modules / temp / no_cleanup_on_exit.spec.js
1 var temp = require('temp');
2 temp.track();
3
4 console.log('Doing something');
5
6 describe('temp will create dir that will remain after the process exits', function() {
7   it('creates a dir', function() {
8     var p = temp.mkdirSync("shouldBeDeletedOnExit");
9     console.log('created dir ' + p);
10   });
11 });