updated tests

This commit is contained in:
Owen Rees
2023-06-22 13:39:50 +02:00
parent 6f7b840b54
commit ef08aa3a61
28 changed files with 43 additions and 43 deletions
+2 -2
View File
@@ -22,7 +22,7 @@ const ThemeSwitcher = () => {
{colorTheme === "light" ? (
<div
className="toggle-dark"
data-cy="toggle-dark"
data-test="toggle-dark"
onClick={() => setTheme("light")}
>
<MdBrightness2 className="theme-icon-dark" />
@@ -30,7 +30,7 @@ const ThemeSwitcher = () => {
) : (
<div
className="toggle"
data-cy="toggle"
data-test="toggle"
onClick={() => setTheme("dark")}
>
<MdCircle className="theme-icon" />