CoolFace
Apppublic

ronvolutional/sk-node

sourceHugging Faceupdated 4y agoView on Hugging Face
1likes
test.ts7 linesDownload Raw Back to tests
1import { expect, test } from '@playwright/test';2 3test('about page has expected h1', async ({ page }) => {4	await page.goto('/about');5	expect(await page.textContent('h1')).toBe('About this app');6});7