Files
Compass/old/tests/playwright/LoadingSpinner.test.ts
2025-08-27 21:30:05 +02:00

9 lines
290 B
TypeScript

import {expect, test} from '@playwright/test';
test('shows loading spinner on load', async ({page}) => {
await page.goto('http://localhost:3000/profile'); // Adjust this to your route
const spinner = page.locator('[data-testid="spinner"]');
await expect(spinner).toBeVisible();
});