chore: Rename nationtec-io folder to sreez

This commit is contained in:
jeangab
2024-03-01 14:48:33 -05:00
parent 17f794e93c
commit b6cfb2cc7d
20 changed files with 0 additions and 0 deletions

View File

@@ -0,0 +1,9 @@
import { test, expect } from "@playwright/test";
test("homepage has title and links to intro page", async ({ page }) => {
await page.goto("http://localhost:3000/");
await expect(page).toHaveTitle("Welcome to Leptos");
await expect(page.locator("h1")).toHaveText("Welcome to Leptos!");
});