mirror of
https://github.com/CringeStudios/element-desktop.git
synced 2025-01-18 15:34:59 +01:00
12 lines
144 B
Bash
12 lines
144 B
Bash
|
#!/bin/bash
|
||
|
|
||
|
set -e
|
||
|
|
||
|
echo "Starting Xvfb"
|
||
|
Xvfb :99 -ac &
|
||
|
sleep 2
|
||
|
|
||
|
export DISPLAY=:99
|
||
|
|
||
|
npx playwright test --update-snapshots --reporter line $1
|