Files: 4c58f1c6c3ddb86a97f27f0c84681d201ef1f75f / test / test-50-spawn / test-execSync-1.js
329 bytesRaw
1 | |
2 | |
3 | 'use strict'; |
4 | |
5 | // AppVeyor: unquoted execPath inside 'Program Files' |
6 | if (process.platform === 'win32') return; |
7 | var execSync = require('child_process').execSync; |
8 | |
9 | execSync( |
10 | process.execPath + ' ' + [ |
11 | require.resolve('./test-execSync-child.js'), 'argvx', '--argvy' |
12 | ].join(' '), { stdio: 'inherit' } |
13 | ); |
14 |
Built with git-ssb-web