Fix: Korrigiere ES-Modul-Syntax in Integrationstest und aktualisiere Status
Some checks are pending
Docker Test / test (push) Waiting to run
Some checks are pending
Docker Test / test (push) Waiting to run
This commit is contained in:
parent
b7a60205ad
commit
e5f3345305
2 changed files with 11 additions and 2 deletions
11
STATUS.md
11
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
|
||||
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.
|
||||
|
|
@ -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
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue