feat(setup): Add oxlint, dprint, vite, playwright configs

This commit is contained in:
Ilia Mashkov
2025-12-30 11:05:13 +03:00
parent cd7c4ef9a3
commit 6d70c1ed0e
21 changed files with 898 additions and 15136 deletions

View File

@@ -1,6 +1,6 @@
import { expect, test } from '@playwright/test';
test('home page has expected h1', async ({ page }) => {
await page.goto('/');
await expect(page.locator('h1')).toBeVisible();
await page.goto('/');
await expect(page.locator('h1')).toBeVisible();
});