Skip to content

Commit

Permalink
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Fix CI
Browse files Browse the repository at this point in the history
adriandelgado committed Nov 4, 2023

Verified

This commit was signed with the committer’s verified signature.
deepakjois Deepak Jois
1 parent 91c31f6 commit ec6e535
Showing 3 changed files with 5 additions and 4 deletions.
1 change: 1 addition & 0 deletions src/lib/components/ui/Icon.svelte
Original file line number Diff line number Diff line change
@@ -20,5 +20,6 @@
</script>

<svg xmlns="http://www.w3.org/2000/svg" {width} {height} {viewBox} {stroke} {fill} {...$$restProps}>
<!-- eslint-disable-next-line svelte/no-at-html-tags -->
{@html elements}
</svg>
4 changes: 2 additions & 2 deletions src/lib/components/ui/navigation/Footer.svelte
Original file line number Diff line number Diff line change
@@ -1,10 +1,10 @@
<script lang="ts">
import chevron_down from "$lib/assets/icons/chevron-down.svg?raw";
// import chevron_down from "$lib/assets/icons/chevron-down.svg?raw";
import facebook from "$lib/assets/icons/facebook.svg?raw";
import instagram from "$lib/assets/icons/instagram.svg?raw";
import twitter from "$lib/assets/icons/twitter.svg?raw";
import github from "$lib/assets/icons/github.svg?raw";
import chocomascot from "$lib/assets/logos/mascota.svg";
// import chocomascot from "$lib/assets/logos/mascota.svg";
import Icon from "../Icon.svelte";
const navigation = {
4 changes: 2 additions & 2 deletions tests/test.ts
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
import { expect, test } from "@playwright/test";

test('home page has h1 containing "Kokoa"', async ({ page }) => {
test('home page has h1 containing "KOKOA"', async ({ page }) => {
await page.goto("/");
expect(await page.textContent("h1")).toContain("Kokoa");
expect(await page.textContent("h1")).toContain("KOKOA");
});

0 comments on commit ec6e535

Please sign in to comment.