Prettify all files

This commit is contained in:
Timothy Armes
2023-07-17 11:49:07 +02:00
parent 95118b32e2
commit d3afc1d1f4
34 changed files with 152 additions and 135 deletions
+2 -2
View File
@@ -11,7 +11,7 @@ describe("ThemeSwitcher component", () => {
cy.getByData("toggle").should(($toggle) => {
const backgroundImage = $toggle.css("background-image");
expect(backgroundImage).to.include(
"linear-gradient(rgb(0, 255, 255), rgb(135, 206, 235)"
"linear-gradient(rgb(0, 255, 255), rgb(135, 206, 235)",
);
});
@@ -21,7 +21,7 @@ describe("ThemeSwitcher component", () => {
cy.getByData("toggle-dark").should(($toggle) => {
const backgroundImage = $toggle.css("background-image");
expect(backgroundImage).to.include(
"linear-gradient(rgb(25, 25, 112), rgb(102, 51, 153)"
"linear-gradient(rgb(25, 25, 112), rgb(102, 51, 153)",
);
});
});