You've already forked joplin
mirror of
https://github.com/laurent22/joplin.git
synced 2025-11-23 22:36:32 +02:00
14 lines
252 B
Bash
Executable File
14 lines
252 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 test-ui
|
|
else
|
|
yarn test-ui
|
|
fi
|