#!/bin/sh

set -e

at_exit() {
    echo "info: test exiting"
}
trap at_exit INT TERM EXIT

set -x

xvfb-run -a jami --help

exit 0
