Add playwright configs

Signed-off-by: Danila Fedorin <danila.fedorin@gmail.com>
This commit is contained in:
2025-04-05 21:25:21 -07:00
parent 85321cf744
commit 4cd4cf18f0
4 changed files with 113 additions and 2536 deletions

7
e2e/visual.spec.ts Normal file
View File

@@ -0,0 +1,7 @@
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 });
});