ci: add e2e test w/ playwright connection

This commit is contained in:
Pierre Tachoire
2025-03-11 09:34:30 +01:00
parent 4802a2ce82
commit fd6aa6e54e

View File

@@ -137,3 +137,10 @@ jobs:
./lightpanda serve & echo $! > LPD.pid
node puppeteer/dump.js || exit 1
kill `cat LPD.pid`
- name: run playwright connect
run: |
python3 -m http.server 1234 -d ./public & echo $! > PYTHON.pid
./lightpanda serve & echo $! > LPD.pid
node playwright/connect.js || exit 1
kill `cat LPD.pid` `cat PYTHON.pid`