chore: passes tests and linting
This commit is contained in:
@@ -82,19 +82,19 @@ describe("UI Module", () => {
|
||||
test("should return done status with emoji for console output", () => {
|
||||
const result = getStatusWithColor("done");
|
||||
expect(result).toMatch(/done/);
|
||||
expect(result).toContain("✅");
|
||||
expect(result).toContain("✓");
|
||||
});
|
||||
|
||||
test("should return pending status with emoji for console output", () => {
|
||||
const result = getStatusWithColor("pending");
|
||||
expect(result).toMatch(/pending/);
|
||||
expect(result).toContain("⏱️");
|
||||
expect(result).toContain("○");
|
||||
});
|
||||
|
||||
test("should return deferred status with emoji for console output", () => {
|
||||
const result = getStatusWithColor("deferred");
|
||||
expect(result).toMatch(/deferred/);
|
||||
expect(result).toContain("⏱️");
|
||||
expect(result).toContain("x");
|
||||
});
|
||||
|
||||
test("should return in-progress status with emoji for console output", () => {
|
||||
|
||||
Reference in New Issue
Block a user