Lines Matching full:join
10 [ [path.posix.join, path.win32.join],
63 // Windows-specific join tests
65 path.win32.join,
119 test[0].forEach((join) => {
121 const actual = join.apply(null, test[0]);
123 // For non-Windows specific tests with the Windows join(), we need to try
128 if (join === path.win32.join) {
135 const delimiter = test[0].map(JSON.stringify).join(',');
136 const message = `path.${os}.join(${delimiter})\n expect=${
143 assert.strictEqual(failures.length, 0, failures.join(''));