1
0
mirror of https://github.com/kamranahmedse/developer-roadmap.git synced 2025-01-17 22:28:32 +01:00
developer-roadmap/tests/index.spec.ts

8 lines
182 B
TypeScript
Raw Normal View History

import { test, expect } from '@playwright/test';
test('homepage test', async ({ page }) => {
await page.goto('/');
await expect(page).toHaveScreenshot({ fullPage: true });
});