Home
last modified time | relevance | path

Searched refs:testsubdir (Results 1 – 3 of 3) sorted by relevance

/third_party/node/test/pummel/
Dtest-fs-watch-non-recursive.js36 const testsubdir = path.join(testDir, 'testsubdir'); constant
37 const filepath = path.join(testsubdir, 'watch.txt');
39 fs.mkdirSync(testsubdir, 0o700);
/third_party/node/test/parallel/
Dtest-fs-watch-recursive.js17 const testsubdir = fs.mkdtempSync(testDir + path.sep); constant
18 const relativePathOne = path.join(path.basename(testsubdir), filenameOne);
19 const filepathOne = path.join(testsubdir, filenameOne);
/third_party/node/test/sequential/
Dtest-fs-watch.js95 const testsubdir = fs.mkdtempSync(testDir + path.sep); constant
96 const filepath = path.join(testsubdir, 'newfile.txt');
99 fs.watch(testsubdir, common.mustCall(function(event, filename) {