mirror of
https://github.com/nodejs/node.git
synced 2024-12-01 16:10:02 +01:00
d1aabd6264
Replace var keyword with const or let. PR-URL: https://github.com/nodejs/io.js/pull/2286 Reviewed-By: Roman Reiss <me@silverwind.io>
36 lines
787 B
JavaScript
36 lines
787 B
JavaScript
'use strict';
|
|
const common = require('../common');
|
|
const assert = require('assert');
|
|
const fs = require('fs');
|
|
const path = require('path');
|
|
let succeeded = 0;
|
|
|
|
// This test is only relevant on Windows.
|
|
if (!common.isWindows) {
|
|
console.log('1..0 # Skipped: Windows specific test.');
|
|
return;
|
|
}
|
|
|
|
function test(p) {
|
|
var result = fs.realpathSync(p);
|
|
assert.strictEqual(result, path.resolve(p));
|
|
|
|
fs.realpath(p, function(err, result) {
|
|
assert.ok(!err);
|
|
assert.strictEqual(result, path.resolve(p));
|
|
succeeded++;
|
|
});
|
|
}
|
|
|
|
test('//localhost/c$/windows/system32');
|
|
test('//localhost/c$/windows');
|
|
test('//localhost/c$/');
|
|
test('\\\\localhost\\c$');
|
|
test('c:\\');
|
|
test('c:');
|
|
test(process.env.windir);
|
|
|
|
process.on('exit', function() {
|
|
assert.strictEqual(succeeded, 7);
|
|
});
|