fix jest spawn so it works with nvm in linux

This commit is contained in:
Ken 2019-01-16 13:41:55 -08:00
Родитель fc5ec96126
Коммит bdbd829552
1 изменённых файлов: 1 добавлений и 1 удалений

Просмотреть файл

@ -21,7 +21,7 @@ export function jestTask(options: IJestTaskOptions = {}) {
if (configFile && jestCmd && existsSync(configFile)) {
logger.info(`Running Jest`);
const cmd = encodeArgs([process.execPath])[0];
const cmd = process.execPath;
const args = [
jestCmd,