1
0
mirror of https://github.com/kamranahmedse/developer-roadmap.git synced 2025-08-31 21:11:44 +02:00

Add tests for roadmap pages and homepage

This commit is contained in:
Kamran Ahmed
2023-01-15 15:23:27 +04:00
parent af9e266190
commit cbd79ef299
34 changed files with 152 additions and 2 deletions

7
tests/index.spec.ts Normal file
View File

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