terminology/tests/utils.sh

10 lines
167 B
Bash

#!/bin/sh
test_sleep()
{
#only sleep when running the test within terminology with test ui on
if [ "$IN_TY_TEST_UI" = "1" ]; then
sleep "$1"
fi
}