Skip to content

Commit

Permalink
chore: ci
Browse files Browse the repository at this point in the history
  • Loading branch information
wtto00 committed Sep 15, 2023
1 parent 0d1d279 commit 3fc551b
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 0 deletions.
2 changes: 2 additions & 0 deletions spec/afterStart.test.ts
Original file line number Diff line number Diff line change
Expand Up @@ -17,6 +17,8 @@ describe("after start a emulator", () => {
} else {
avdName = avds[0].Name;
}
const avds1 = await android.listAVDs();
console.log("avds", avds1);
const res = await android.start(avdName);
emulatorId = res.id;
if (emulatorId) {
Expand Down
1 change: 1 addition & 0 deletions src/util.ts
Original file line number Diff line number Diff line change
Expand Up @@ -94,6 +94,7 @@ export function spawnWaitFor(command: string, regex: RegExp, timeout = 120000) {
}
});
proc.on("close", (code, signal) => {
console.log("error", proc.stderr);
clearTimeout(clock);
reject(Error(output));
});
Expand Down

0 comments on commit 3fc551b

Please sign in to comment.