8 lines
254 B
TypeScript
8 lines
254 B
TypeScript
|
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/");
|
||
|
});
|