diff --git a/STATUS.md b/STATUS.md index cac7a5b..f16b69f 100644 --- a/STATUS.md +++ b/STATUS.md @@ -20,4 +20,13 @@ 1. Lokale MySQL-Datenbank einrichten für Entwicklung 2. Backend mit lokaler Datenbank testen 3. Integrationstests reparieren oder anpassen -4. Vollständige Entwicklungsumgebung aufbauen \ No newline at end of file +4. Vollständige Entwicklungsumgebung aufbauen + +## Aktueller Status der Tests +Die Integrationstests funktionieren als HTTP-Health-Checks, aber Playwright-Tests schlagen aufgrund fehlender Systemabhängigkeiten fehl: + +``` +/home/openclaw/.cache/ms-playwright/chromium_headless_shell-1208/chrome-headless-shell-linux64/chrome-headless-shell: error while loading shared libraries: libatk-1.0.so.0: cannot open shared object file: No such file or directory +``` + +Dieser Fehler tritt auf, weil die benötigte Bibliothek `libatk-1.0.so.0` nicht installiert ist. \ No newline at end of file diff --git a/backend/tests/integration-test.spec.js b/backend/tests/integration-test.spec.js index 89ddda9..c64ecc8 100644 --- a/backend/tests/integration-test.spec.js +++ b/backend/tests/integration-test.spec.js @@ -1,5 +1,5 @@ // Integration test for helpyourneighbour project -const { test, expect } = require('@playwright/test'); +import { test, expect } from '@playwright/test'; test('should run integration tests successfully', async ({ page }) => { // Test that the main functionality works