(realpath, realpathSync, cb)
| 544 | } |
| 545 | |
| 546 | function test_root(realpath, realpathSync, cb) { |
| 547 | assertEqualPath(root, realpathSync('/')); |
| 548 | realpath('/', common.mustSucceed((result) => { |
| 549 | assertEqualPath(root, result); |
| 550 | cb(); |
| 551 | })); |
| 552 | } |
| 553 | |
| 554 | function test_root_with_null_options(realpath, realpathSync, cb) { |
| 555 | realpath('/', null, common.mustSucceed((result) => { |
nothing calls this directly
no test coverage detected
searching dependent graphs…