Files
beekeeper-studio/bin/check-for-only-tests.sh
2021-12-17 14:19:37 -06:00

15 lines
190 B
Bash
Executable File

#! /bin/bash
git grep -a "\.only" apps/studio/tests/
STATUS=$?
if [[ $STATUS -eq 0 ]]
then
echo "Found tests with .only still there"
exit 1;
else
echo "tests look good"
exit 0
fi