Skip to content

Commit dbbfc09

Browse files
committed
improve debugging
1 parent f960481 commit dbbfc09

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

packages/core/src/test/awsService/ec2/model.test.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -229,7 +229,7 @@ describe('getRemoveLinesCommand', async function () {
229229
await fs.writeFile(textFile, originalContent)
230230
console.log('running on os: %s', hostOS)
231231
const [command, ...args] = getRemoveLinesCommand('pattern', hostOS, textFile).split(' ')
232-
console.log('running command: %s', command)
232+
console.log('running command: %s with args %s', command, args.join(' '))
233233
const process = new ChildProcess(command, args, { collect: true })
234234
const result = await process.run()
235235
assert.strictEqual(result.exitCode, 0, `ChildProcess failed with error=${result.error}`)

0 commit comments

Comments
 (0)