mirror of
https://github.com/CompassConnections/Compass.git
synced 2026-01-06 04:48:14 -05:00
9 lines
279 B
TypeScript
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();
|
|
});
|