Files
Compass/tests/playwright/some.test.ts
MartinBraquet e0291b8e5a Fix tests
2025-09-01 14:36:47 +02:00

9 lines
279 B
TypeScript

import {expect, test} from '@playwright/test';
test('shows', 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();
});