MAESTRO: fix formatting for report lint

This commit is contained in:
Mariusz Banach
2026-02-18 03:20:58 +01:00
parent 497f7cec7e
commit 48d4b2dd56
20 changed files with 72 additions and 194 deletions

View File

@@ -66,9 +66,7 @@ describe("ProgressIndicator", () => {
expect(indicator.getAttribute("data-status")).toBe("analysing");
expect(indicator.getAttribute("data-variant")).toBe("normal");
expect(getByTestId(container, "progress-percentage").textContent ?? "").toMatch(
/50%/,
);
expect(getByTestId(container, "progress-percentage").textContent ?? "").toMatch(/50%/);
expect(getByTestId(container, "progress-current-test").textContent ?? "").toMatch(
/SpamAssassin Rule Hits/,
);
@@ -117,8 +115,6 @@ describe("ProgressIndicator", () => {
expect(getByTestId(container, "timeout-tests").textContent ?? "").toMatch(
/Mimecast Fingerprint/,
);
expect(getByTestId(container, "timeout-tests").textContent ?? "").toMatch(
/Proofpoint TAP/,
);
expect(getByTestId(container, "timeout-tests").textContent ?? "").toMatch(/Proofpoint TAP/);
});
});