auto(agent): Run expanded local discovery and continue with next actionable task

This commit is contained in:
OpenClaw 2026-03-06 15:39:11 +00:00
parent e238123393
commit 6dceec1893
14 changed files with 313 additions and 12 deletions

View 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);
});