blog-versions/e2e/visual.spec.ts
Danila Fedorin 4cd4cf18f0 Add playwright configs
Signed-off-by: Danila Fedorin <danila.fedorin@gmail.com>
2025-04-05 21:27:34 -07:00

8 lines
237 B
TypeScript

import { test, expect } from '@playwright/test';
test('example test', async ({ page }) => {
await page.goto('http://localhost:8081/blog/02_compiler_parsing/index.html');
await expect(page).toHaveScreenshot({ fullPage: true });
});