Chrysoblog/tests/post.spec.ts

8 lines
254 B
TypeScript
Raw Permalink Normal View History

2024-09-29 18:45:35 -07:00
import { expect, test } from '@playwright/test';
test('Navigate to blog post', async ({ page }) => {
await page.goto('/post');
await page.getByText('The Perfect Math Class').click();
await expect(page).toHaveURL("/post/the-perfect-math-class/");
});