Skip to content

Commit

Permalink
fix(test): Integration group by childProcessResult
Browse files Browse the repository at this point in the history
  • Loading branch information
Morten N.O. Henriksen committed Nov 28, 2021
1 parent 2b86c74 commit 3c9d7a0
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion test/integration/create-react-app/index.test.js
Original file line number Diff line number Diff line change
Expand Up @@ -39,8 +39,9 @@ const run = async (args, options) => {
result.stdout.on('data', chunk =>
process.stdout.write(chunk.toString('utf8'))
);
const childProcessResult = await result;
process.stdout.write('::endgroup::\n');
return await result;
return childProcessResult;
};

const genFileExists = f => existsSync(join(genPath, f));
Expand Down

0 comments on commit 3c9d7a0

Please sign in to comment.