diff --git a/shrine/test/main_test.dart b/shrine/test/main_test.dart index ab73b3a23..f8fc729db 100644 --- a/shrine/test/main_test.dart +++ b/shrine/test/main_test.dart @@ -1 +1,11 @@ -void main() {} +// Copyright 2018 The Chromium Authors. All rights reserved. +// Use of this source code is governed by a BSD-style license that can be +// found in the LICENSE file. + +import 'package:flutter_test/flutter_test.dart'; + +void main() { + group('Unit tests', () { + test('This test always passes', () {}); + }); +} diff --git a/travis_script.sh b/travis_script.sh index 52431fa1d..a84625276 100644 --- a/travis_script.sh +++ b/travis_script.sh @@ -1,9 +1,16 @@ set -e -echo "== Testing 'jsonexample' on Flutter's $FLUTTER_VERSION channel ==" +declare -a PROJECT_NAMES=( + "jsonexample" \ + "shrine" \ +) -pushd jsonexample -../flutter/bin/flutter test -popd +for PROJECT_NAME in "${PROJECT_NAMES[@]}" +do + echo "== Testing '${PROJECT_NAME}' on Flutter's $FLUTTER_VERSION channel ==" + pushd "${PROJECT_NAME}" + ../flutter/bin/flutter test + popd +done echo "-- Success --"