mirror of
https://github.com/tiennm99/github-readme-stats.git
synced 2026-05-21 08:24:33 +00:00
tests:: allow gradient themes (#3401)
This commit is contained in:
committed by
GitHub
parent
f8aa2db39d
commit
3977b905b8
@@ -190,9 +190,10 @@ describe("Test renderRepoCard", () => {
|
||||
);
|
||||
expect(descClassStyles.fill.trim()).toBe(`#${themes[name].text_color}`);
|
||||
expect(iconClassStyles.fill.trim()).toBe(`#${themes[name].icon_color}`);
|
||||
expect(queryByTestId(document.body, "card-bg")).toHaveAttribute(
|
||||
"fill",
|
||||
`#${themes[name].bg_color}`,
|
||||
const backgroundElement = queryByTestId(document.body, "card-bg");
|
||||
const backgroundElementFill = backgroundElement.getAttribute("fill");
|
||||
expect([`#${themes[name].bg_color}`, "url(#gradient)"]).toContain(
|
||||
backgroundElementFill,
|
||||
);
|
||||
});
|
||||
});
|
||||
|
||||
Reference in New Issue
Block a user