Added a delay between commands. Fixed issue where inputs were not being set correctly.

This commit is contained in:
watsonb8
2019-06-23 11:42:10 -04:00
parent 8bb65b5b3c
commit 0ea4188487
2 changed files with 10 additions and 3 deletions

3
src/Util/Sleep.ts Normal file
View File

@ -0,0 +1,3 @@
export function sleep(ms: number) {
return new Promise(resolve => setTimeout(resolve, ms));
}