import { test, expect } from '@playwright/test'; test('sign-in page loads and shows Google button', async ({ page }) => { await page.goto('/sign-in'); await expect(page.getByRole('link', { name: /google/i })).toBeVisible(); }); test('unauthenticated root redirects to sign-in', async ({ page }) => { await page.goto('/'); await expect(page).toHaveURL(/sign-in/); });