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)",
);
});
});
+1 -1
View File
@@ -21,7 +21,7 @@ describe("Data fetching from API endpoints", () => {
const responseData = response.body;
const itemCount = responseData.length;
expect(itemCount).to.eq(tableRows);
}
},
);
});
});
+1 -1
View File
@@ -66,7 +66,7 @@ describe("Test links", () => {
});
cy.log(link.prop("href"));
}
}
},
);
});
});
+4 -4
View File
@@ -1,11 +1,11 @@
<!DOCTYPE html>
<!doctype html>
<!--suppress HtmlRequiredLangAttribute, HtmlUnknownTag -->
lUnknownTag -->
<html>
<head>
<meta charset="utf-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width,initial-scale=1.0">
<meta charset="utf-8" />
<meta http-equiv="X-UA-Compatible" content="IE=edge" />
<meta name="viewport" content="width=device-width,initial-scale=1.0" />
<title>Components App</title>
<!-- Used by Next.js to inject CSS. -->
<div id="__next_css__DO_NOT_USE__"></div>
+2 -2
View File
@@ -14,7 +14,7 @@
// ***********************************************************
// Import commands.js using ES2015 syntax:
import './commands'
import "./commands";
// Alternatively you can use CommonJS syntax:
// require('./commands')
// require('./commands')