terminology/tests/utils.sh

10 lines
169 B
Bash
Raw Normal View History

2020-12-25 04:46:38 -08:00
#!/bin/sh
test_sleep()
{
#only sleep when running the test within terminology with test ui on
if [ "$IN_TY_TEST_UI" -eq "1" ]; then
sleep "$1"
fi
}