Lines Matching refs:entry

106   const entry = `${tmpDir}/symlink`;
109 [entry, `../${path.basename(tmpDir)}/cycles/root.js`],
118 const result = realpathSync(entry);
120 asynctest(realpath, [entry], callback, function(err, result) {
134 const entry = `${tmpAbsDir}/symlink`;
137 [entry, expected],
146 const result = realpathSync(entry);
148 asynctest(realpath, [entry], callback, function(err, result) {
172 const entry = path.join(targetsAbsDir,
174 try { fs.unlinkSync(entry); } catch {
177 fs.symlinkSync(linkData2, entry, 'file');
179 unlink.push(entry);
181 assertEqualPath(realpathSync(entry), path.resolve(expected));
182 asynctest(realpath, [entry], callback, function(err, result) {
203 const entry = path.join(targetsAbsDir,
205 try { fs.unlinkSync(entry); } catch {
208 fs.symlinkSync(linkData2b, entry, 'dir');
210 unlink.push(entry);
212 assertEqualPath(realpathSync(entry), path.resolve(expected));
214 asynctest(realpath, [entry], callback, function(err, result) {
225 const entry = path.join(tmpDir, '/cycles/realpath-3a');
227 [entry, '../cycles/realpath-3b'],
238 realpathSync(entry);
241 realpath, [entry], callback, common.mustCall(function(err, result) {
242 assert.strictEqual(err.path, entry);
280 const entry = path.relative(entrydir,
284 [entry, '../cycles/realpath-3b'],
302 assertEqualPath(realpathSync(entry), path.resolve(expected));
303 asynctest(realpath, [entry], callback, function(err, result) {
329 const entry = tmp('node-test-realpath-f1');
339 [entry, `${tmpDir}/node-test-realpath-d1/foo`],
360 assertEqualPath(realpathSync(entry), path.resolve(expected));
361 asynctest(realpath, [entry], callback, function(err, result) {
370 const entry = `${tmpAbsDir.substr(entrydir.length + 1)}/cycles/root.js`;
374 assertEqualPath(realpathSync(entry), path.resolve(expected));
375 asynctest(realpath, [entry], callback, function(err, result) {