We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 31fbc88 commit 367d752Copy full SHA for 367d752
1 file changed
src/commands/cdxgen/cmd-cdxgen.test.mts
@@ -17,6 +17,10 @@ describe('socket cdxgen', async () => {
17
`should support ${FLAG_HELP}`,
18
async cmd => {
19
const { code, stderr, stdout } = await spawnSocketCli(binCliPath, cmd)
20
+ // Debug: Log what we actually receive
21
+ console.log('stdout:', stdout)
22
+ console.log('stderr:', stderr)
23
+
24
// Note: cdxgen may output version info to stdout or stderr depending on environment.
25
// In CI environments, stdout might be empty while help text is in stderr.
26
const hasVersionInStdout = stdout.includes('CycloneDX Generator')
0 commit comments