Skip to content

Commit

Permalink
Use real links and home
Browse files Browse the repository at this point in the history
Should resolve some SEO issues. Also added meta tags.

Also required a new Svelte version. There were bugs with aforementiend
meta tags.

sveltejs/svelte#2086
  • Loading branch information
krwenholz committed Mar 27, 2020
1 parent 40a7839 commit 991b71a
Show file tree
Hide file tree
Showing 20 changed files with 1,156 additions and 1,639 deletions.
2 changes: 1 addition & 1 deletion cypress/integration/adventure.spec.js
Expand Up @@ -70,7 +70,7 @@ describe("Adventure", () => {
it("allows user to visit another story", () => {
cy.visit("/")
.get(".story-previews")
.find("button")
.find("a")
.last()
.click();

Expand Down
2 changes: 1 addition & 1 deletion cypress/integration/non-subscriber.spec.js
Expand Up @@ -8,7 +8,7 @@ describe("NonSubscriber", () => {
"exist"
);
cy.get(".story-previews")
.find("button")
.find("a.button")
.should("have.length", 1);
});
});
2 changes: 1 addition & 1 deletion cypress/integration/subscriber.spec.js
Expand Up @@ -10,7 +10,7 @@ describe("Subscriber", () => {
"not.exist"
);
cy.get(".story-previews")
.find("button")
.find("a")
.should("have.length", 7);
});
});

0 comments on commit 991b71a

Please sign in to comment.