mirror of
https://github.com/Sosokker/HomieCare.git
synced 2025-12-19 02:04:03 +01:00
9 lines
249 B
TypeScript
9 lines
249 B
TypeScript
import { test, expect } from '@playwright/test';
|
|
|
|
test('test', async ({ page }) => {
|
|
await page.goto('http://localhost:5173/');
|
|
|
|
const alertContainer = await page.waitForSelector('#alert-container');
|
|
expect(alertContainer).not.toBeNull();
|
|
});
|