Skip to content

Commit e3c779a

Browse files
committed
merges for auto-correct pull changes
1 parent 9635681 commit e3c779a

File tree

3 files changed

+3
-3
lines changed

3 files changed

+3
-3
lines changed

__tests__/__src__/TestUtils.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -37,7 +37,7 @@ export function runCliScript(scriptPath: string, testEnvironment: ITestEnvironme
3737

3838
fs.chmodSync(scriptPath, "755");
3939
// Execute the command synchronously
40-
return spawnSync(scriptPath, [].concat(args), {cwd: testEnvironment.workingDir, env: childEnv, shell: true});
40+
return spawnSync(scriptPath, [].concat(args), {cwd: testEnvironment.workingDir, env: childEnv, shell: true, stdio: ["pipe", "pipe", "pipe"], windowsHide: true});
4141
} else {
4242
throw new Error(`The script file ${scriptPath} doesn't exist`);
4343

__tests__/cli/deploy/bundle/__snapshots__/DeployBundle.definition.test.ts.snap

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -31,7 +31,7 @@ export const DeployBundleDefinition: ICommandDefinition = {
3131
aliases: [\\"b\\", \\"bun\\", \\"bund\\"],
3232
summary: \\"Deploy a CICS bundle\\",
3333
description: \\"Deploy a CICS bundle from zFS to a CPSM managed group of CICS regions. \\" +
34-
\\"The DFHDPLOY utility is used to install and make available a Bundle resource \\" +
34+
\\"The DFHDPLOY utility is used to install and make available a BUNDLE resource \\" +
3535
\\"in the target group of CICS regions.\\",
3636
type: \\"command\\",
3737
handler: __dirname + \\"/DeployBundle.handler\\",

__tests__/cli/undeploy/bundle/__snapshots__/UndeployBundle.definition.test.ts.snap

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -30,7 +30,7 @@ export const UndeployBundleDefinition: ICommandDefinition = {
3030
aliases: [\\"b\\", \\"bun\\", \\"bund\\"],
3131
summary: \\"Deploy a CICS bundle\\",
3232
description: \\"Undeploy a CICS bundle from a CPSM managed group of CICS regions. \\" +
33-
\\"The DFHDPLOY utility is used to undeploy and remove a Bundle resource \\" +
33+
\\"The DFHDPLOY utility is used to undeploy and remove a BUNDLE resource \\" +
3434
\\"from the target group of CICS regions.\\",
3535
type: \\"command\\",
3636
handler: __dirname + \\"/UndeployBundle.handler\\",

0 commit comments

Comments
 (0)