Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 5 additions & 1 deletion bin/run-test.sh
Original file line number Diff line number Diff line change
Expand Up @@ -83,7 +83,11 @@ pouchdb-build-node() {
}

if [[ $CI = true ]] && [[ $CLIENT != node ]]; then
npx playwright install --with-deps "$CLIENT"
# npx playwright install --with-deps "$CLIENT"
# The full install with deps was glacially slow on CI,
npx playwright install "$CLIENT"
sudo apt-get update
sudo apt-get install -y libnss3 libatk-bridge2.0-0 libdrm2 libxcomposite1 libxdamage1 libxrandr2 libgbm1
fi

if [[ -n $SERVER ]]; then
Expand Down
Loading