Lines Matching refs:cycles
107 const expected = `${tmpDir}/cycles/root.js`;
109 [entry, `../${path.basename(tmpDir)}/cycles/root.js`],
160 const expected = fixtures.path('cycles', 'root.js');
193 const expected = fixtures.path('cycles', 'folder');
225 const entry = path.join(tmpDir, '/cycles/realpath-3a');
227 [entry, '../cycles/realpath-3b'],
228 [path.join(tmpDir, '/cycles/realpath-3b'), '../cycles/realpath-3c'],
229 [path.join(tmpDir, '/cycles/realpath-3c'), '../cycles/realpath-3a'],
254 const cycles = `${tmpDir}/cycles`;
255 const expected = realpathSync(cycles);
256 const folder = `${cycles}/folder`;
257 const link = `${folder}/cycles`;
258 let testPath = cycles;
259 testPath += '/folder/cycles'.repeat(10);
263 fs.symlinkSync(cycles, link, 'dir');
281 path.join(`${tmpDir}/cycles/realpath-3a`));
282 const expected = `${tmpDir}/cycles/root.js`;
284 [entry, '../cycles/realpath-3b'],
285 [`${tmpDir}/cycles/realpath-3b`, '../cycles/realpath-3c'],
286 [`${tmpDir}/cycles/realpath-3c`, 'root.js'],
326 // $tmpDir/targets/nested-index/two/realpath-c -> $tmpDir/cycles/root.js
327 // $tmpDir/targets/cycles/root.js (hard)
348 `${tmpDir}/cycles/root.js`],
359 const expected = `${tmpAbsDir}/cycles/root.js`;
370 const entry = `${tmpAbsDir.substr(entrydir.length + 1)}/cycles/root.js`;
371 const expected = `${tmpAbsDir}/cycles/root.js`;
604 const tmpDirs = ['cycles', 'cycles/folder'];
609 fs.writeFileSync(tmp('cycles/root.js'), "console.error('roooot!');");