Files
vscode/test/sanity/containers/entrypoint.sh
Dmitriy Vasyura aaaac22b3c Sanity tests for Linux (#290072)
Added Linux containers for supported platforms.
Updated tests to run and pass on all targets.
2026-01-23 18:49:15 -08:00

19 lines
375 B
Bash

#!/bin/sh
set -e
if command -v Xvfb > /dev/null 2>&1; then
echo "Starting X11 Server"
export DISPLAY=:99
Xvfb $DISPLAY -screen 0 1024x768x24 -ac -noreset &
fi
if command -v dbus-daemon > /dev/null 2>&1; then
echo "Starting Desktop Bus"
dbus-daemon --system --fork
fi
export PLAYWRIGHT_SKIP_BROWSER_DOWNLOAD=1
echo "Running sanity tests"
node /root/out/index.js "$@"