pruebas e2e

This commit is contained in:
2025-12-23 11:36:48 -03:00
parent f695ed7213
commit c2d73b97db
30 changed files with 252 additions and 19 deletions
+8
View File
@@ -0,0 +1,8 @@
import { test as setup } from '@playwright/test';
setup('check services are up', async ({ request }) => {
// We could ping health endpoints here
// const studio = await request.get('http://studio:3000');
// expect(studio.ok()).toBeTruthy();
console.log('Setup complete - proceeding to tests');
});