Skip to content

Commit

Permalink
fix: Update VITE_STRIPE_KEY in .env.example
Browse files Browse the repository at this point in the history
Update the VITE_STRIPE_KEY value in .env.example to string type
  • Loading branch information
mwargan committed Sep 11, 2024
1 parent cd0ed8b commit 870ceae
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 2 deletions.
2 changes: 1 addition & 1 deletion .env.example
Original file line number Diff line number Diff line change
Expand Up @@ -2,4 +2,4 @@ VITE_APP_NAME="App Name"
VITE_PUSHER_KEY=
VITE_GA_MEASUREMENT_ID=
VITE_API_URL=http://192.168.10.17/
VITE_STRIPE_KEY=sk-test-01
VITE_STRIPE_KEY="sk-test-01"
6 changes: 5 additions & 1 deletion cypress/e2e/locale.cy.ts
Original file line number Diff line number Diff line change
Expand Up @@ -63,7 +63,11 @@ describe("Locales", () => {
// The navbar should contain "Connexion"
cy.get("nav").should("contain", "Connexion");
// In the header, the og:locale should be "fr"
cy.get("head meta[property='og:locale']").should("have.attr", "content", "fr");
cy.get("head meta[property='og:locale']").should(
"have.attr",
"content",
"fr"
);
// Generate an API call to check the Axios is now sending the correct Accept-Language header
// @todo
});
Expand Down

0 comments on commit 870ceae

Please sign in to comment.