Skip to content

Commit

Permalink
fix missing car emoji
Browse files Browse the repository at this point in the history
  • Loading branch information
austin-autify committed Jan 23, 2025
1 parent c002342 commit 554ec16
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion src/autify/mobile/waitTestResult.ts
Original file line number Diff line number Diff line change
Expand Up @@ -51,7 +51,7 @@ const emojiStatus = (status?: Status) => {
if (status === "queuing") return emoji.get("cyclone") + " Queuing";
if (status === "waiting")
return emoji.get("hourglass_flowing_sand") + " Waiting";
if (status === "running") return emoji.get("car") + " Running";
if (status === "running") return emoji.get("red_car") + " Running";
if (status === "passed") return emoji.get("+1") + " Passed ";
if (status === "failed") return emoji.get("rotating_light") + " Failed ";
if (status === "skipped") return emoji.get("zzz") + " Skipped";
Expand Down
2 changes: 1 addition & 1 deletion src/autify/web/waitTestResult.ts
Original file line number Diff line number Diff line change
Expand Up @@ -60,7 +60,7 @@ const emojiStatus = (status?: Status) => {
if (status === "queuing") return emoji.get("cyclone") + " Queuing";
if (status === "waiting")
return emoji.get("hourglass_flowing_sand") + " Waiting";
if (status === "running") return emoji.get("car") + " Running";
if (status === "running") return emoji.get("red_car") + " Running";
if (status === "passed") return emoji.get("+1") + " Passed ";
if (status === "failed") return emoji.get("rotating_light") + " Failed ";
if (status === "skipped") return emoji.get("zzz") + " Skipped";
Expand Down

0 comments on commit 554ec16

Please sign in to comment.