auto(agent): Run expanded local discovery and continue with next actionable task
This commit is contained in:
parent
e238123393
commit
6dceec1893
14 changed files with 313 additions and 12 deletions
7
backend/tests/integration-test.spec.js
Normal file
7
backend/tests/integration-test.spec.js
Normal file
|
|
@ -0,0 +1,7 @@
|
|||
import { test, expect } from '@playwright/test';
|
||||
|
||||
test('API server starts and returns 200', async ({ page }) => {
|
||||
await page.goto('http://localhost:3000/api/health');
|
||||
const status = await page.status();
|
||||
expect(status).toBe(200);
|
||||
});
|
||||
Loading…
Add table
Add a link
Reference in a new issue