fix smoketest in tfs

This commit is contained in:
Joao Moreno 2018-05-02 16:52:45 +02:00
parent e7f44f2790
commit 050e66fdad

View file

@ -22,6 +22,8 @@ export class Terminal {
async runCommand(commandText: string): Promise<void> {
await this.code.writeInTerminal(XTERM_SELECTOR, commandText);
// hold your horses
await new Promise(c => setTimeout(c, 500));
await this.code.dispatchKeybinding('enter');
}