From fe6dc6662c4be24c15cc2afc955a07d2fc9cb4c7 Mon Sep 17 00:00:00 2001 From: Mike Donnalley Date: Mon, 3 Oct 2022 13:08:18 -0600 Subject: [PATCH] fix: add space --- src/testSession.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/testSession.ts b/src/testSession.ts index b0c05ea7..d280d004 100644 --- a/src/testSession.ts +++ b/src/testSession.ts @@ -334,7 +334,7 @@ export class TestSession extends AsyncOptionalCreatable { } if (org.wait) { - baseCmd += `-w ${org.wait}`; + baseCmd += ` -w ${org.wait}`; } const rv = shell.exec(baseCmd, this.shelljsExecOptions) as shell.ShellString;