blog-versions/e2e/visual.spec.ts

8 lines
237 B
TypeScript
Raw Normal View History

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 });
});