mirror of
https://github.com/beekeeper-studio/beekeeper-studio.git
synced 2026-03-13 10:12:54 +08:00
15 lines
190 B
Bash
Executable File
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
|