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.
filepizza/tests/e2e/basic.test.ts

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:4100/')
await expect(
page.getByText('Peer-to-peer file transfers in your browser.'),
).toBeVisible()
})