Use `dart test` (#1711)

pull/1710/head
Brett Morgan 1 year ago committed by GitHub
parent 604c82cd7c
commit 75b552d921
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

@ -20,7 +20,12 @@ function ci_projects () {
# Run the actual tests.
if [ -d "test" ]
then
flutter test
if grep -q "flutter:" "pubspec.yaml"; then
flutter test
else
# If the project is not a Flutter project, use the Dart CLI.
dart test
fi
fi
popd

Loading…
Cancel
Save