mirror of https://github.com/kern/filepizza
You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
10 lines
287 B
TypeScript
10 lines
287 B
TypeScript
/// <reference types="@playwright/test" />
|
|
import { test, expect } from '@playwright/test'
|
|
|
|
test('home page loads', async ({ page }) => {
|
|
await page.goto('http://localhost:3000/')
|
|
await expect(
|
|
page.getByText('Peer-to-peer file transfers in your browser.'),
|
|
).toBeVisible()
|
|
})
|