Automatischer Commit: Aktualisierung von package.json und package-lock.json sowie neue Test-Dateien

This commit is contained in:
OpenClaw 2026-03-05 23:34:21 +00:00
parent af556cd7e9
commit 184f281836
5 changed files with 106 additions and 1 deletions

View file

@ -0,0 +1,6 @@
import { test, expect } from '@playwright/test';
test('API server starts and returns 200', async ({ page }) => {
await page.goto('http://localhost:3000/api/health');
await expect(page.status()).toBe(200);
});