main
Yanick Champoux 2022-04-17 12:26:25 -04:00
parent f9228916f3
commit 9a37720c86
1 changed files with 10 additions and 0 deletions

View File

@ -0,0 +1,10 @@
import { test, expect } from "vitest";
import { render } from "@testing-library/svelte";
import App from "./Header.svelte";
test("reset ship link is present", () => {
const { queryByText } = render(App);
expect(queryByText("reset ship")).toBeTruthy();
});