We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 4802a2c commit fd6aa6eCopy full SHA for fd6aa6e
.github/workflows/e2e-test.yml
@@ -137,3 +137,10 @@ jobs:
137
./lightpanda serve & echo $! > LPD.pid
138
node puppeteer/dump.js || exit 1
139
kill `cat LPD.pid`
140
+
141
+ - name: run playwright connect
142
+ run: |
143
+ python3 -m http.server 1234 -d ./public & echo $! > PYTHON.pid
144
+ ./lightpanda serve & echo $! > LPD.pid
145
+ node playwright/connect.js || exit 1
146
+ kill `cat LPD.pid` `cat PYTHON.pid`
0 commit comments