Skip to content

Commit

Permalink
test: some changes
Browse files Browse the repository at this point in the history
  • Loading branch information
jonasmerlin committed Aug 21, 2023
1 parent a804b5c commit de1e417
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 4 deletions.
4 changes: 2 additions & 2 deletions cypress/e2e/seo.cy.js
Original file line number Diff line number Diff line change
Expand Up @@ -37,7 +37,7 @@ describe("Basic Tags", () => {
cy.get('head meta[property="og:title"]').should(
"have.attr",
"content",
"Tinker Tailor Soldier Spy"
"Tinker Tailor Soldier & Spy"
);
cy.get('head meta[property="og:type"]').should(
"have.attr",
Expand Down Expand Up @@ -189,7 +189,7 @@ describe("Open Graph image tags", () => {
cy.get('head meta[property="og:image:height"]').should(
"have.attr",
"content",
"0"
"1"
);
});

Expand Down
2 changes: 1 addition & 1 deletion src/pages/index.astro
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ import SEO from "../SEO.astro";
charset="utf-8"
openGraph={{
basic: {
title: "Tinker Tailor Soldier Spy",
title: "Tinker Tailor Soldier & Spy",
type: "book",
image:
"https://user-images.githubusercontent.com/5182256/131216951-8f74f425-f775-463d-a11b-0e01ad9fce8d.png",
Expand Down
2 changes: 1 addition & 1 deletion src/pages/ogImageTags.astro
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,7 @@ import SEO from "../SEO.astro";
secureUrl: "open_graph_image_secure_url",
type: "open_graph_image_mime_type",
width: 500,
height: 0,
height: 1,
alt: "open_graph_image_alt",
},
}}
Expand Down

0 comments on commit de1e417

Please sign in to comment.