ihm_client/tests/e2e/smoke.spec.ts
Your Name 8a94c57c2a
Some checks failed
CI/CD Pipeline / test (push) Failing after 8s
CI/CD Pipeline / security (push) Has been skipped
CI/CD Pipeline / integration-test (push) Has been skipped
e2e: config Playwright + test smoke; CI: installer et exécuter E2E; docs TESTING mise à jour
2025-08-26 07:03:08 +02:00

7 lines
195 B
TypeScript
Raw Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

import { test, expect } from '@playwright/test';
test('charge la page daccueil', async ({ page }) => {
await page.goto('/');
await expect(page.locator('#containerId')).toBeVisible();
});