chore: lint build test
Node.js CI / CI (pull_request) Failing after 8s
Security Scan and Upload / Security & DefectDojo Upload (pull_request) Successful in 55s

This commit is contained in:
2026-02-19 16:24:21 -08:00
parent f28e2e37c0
commit f378a74199
12 changed files with 93 additions and 10 deletions
+2 -1
View File
@@ -35,10 +35,11 @@ describe("show Types", () => {
it("should have all expected enum values", () => {
const values = Object.values(ShowStatus);
expect(values).toHaveLength(3);
expect(values).toHaveLength(4);
expect(values).toContain("WATCHING");
expect(values).toContain("COMPLETED");
expect(values).toContain("WANT_TO_WATCH");
expect(values).toContain("RETIRED");
});
});