chore: passes tests and linting

This commit is contained in:
Eyal Toledano
2025-06-07 20:30:51 -04:00
parent 01992ebd0b
commit e50230f9ce
13 changed files with 6587 additions and 4998 deletions

View File

@@ -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", () => {