improve tests

This commit is contained in:
2017-03-11 01:58:09 +01:00
parent 4130ab55e2
commit d849c17817
4 changed files with 36 additions and 7 deletions

View File

@ -31,11 +31,11 @@ export class Smartshell {
/**
* executes silently and returns IExecResult
* @param commandArg
* @param commandArg
*/
execSilent(commandArg: string) {
async execSilent (commandArg: string) {
let execCommand = this.createExecString(commandArg)
return smartshellWrap.execSilent(commandArg)
return await smartshellWrap.execSilent(commandArg)
}
/**