mirror of
https://github.com/laurent22/joplin.git
synced 2024-12-03 08:35:29 +02:00
14 lines
268 B
Bash
Executable File
14 lines
268 B
Bash
Executable File
#!/bin/sh
|
|
|
|
echo "Running desktop integration tests..."
|
|
|
|
export CI=true
|
|
|
|
if test "$RUNNER_OS" = "Linux" ; then
|
|
# The Ubuntu Github CI doesn't have a display server.
|
|
# Start a virtual one with xvfb-run.
|
|
xvfb-run -- yarn playwright test
|
|
else
|
|
yarn playwright test
|
|
fi
|