1// Tests resolving a path in the context of a spawned process.
2// See https://github.com/nodejs/node/issues/7215
3const path = require('path');
4console.log(path.resolve(process.argv[2]));
5