Skip to content

Commit f1996ad

Browse files
committed
refactor: fix create-cli unit tests
1 parent 15da0ab commit f1996ad

File tree

1 file changed

+4
-3
lines changed

1 file changed

+4
-3
lines changed

packages/create-cli/src/lib/init.ts

Lines changed: 4 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -41,12 +41,13 @@ export async function initCodePushup() {
4141
},
4242
});
4343

44-
const { stdout: configStdout, stderr: configStderr } = await executeProcess(
45-
nxPluginGenerator('configuration', {
44+
const { stdout: configStdout, stderr: configStderr } = await executeProcess({
45+
...nxPluginGenerator('configuration', {
4646
skipTarget: true,
4747
project: setupResult.projectName,
4848
}),
49-
);
49+
verbose: isVerbose(),
50+
});
5051
console.info(parseNxProcessOutput(configStdout));
5152
console.warn(parseNxProcessOutput(configStderr));
5253

0 commit comments

Comments
 (0)