You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: tool/test_example.sh
+4-4
Original file line number
Diff line number
Diff line change
@@ -3,12 +3,12 @@
3
3
set -e
4
4
5
5
cd example/project
6
-
dart pub upgrade
6
+
dart pub get
7
7
dart run build_runner build --delete-conflicting-outputs
8
-
dart run build_runner test -- --concurrency=1 # concurrency=1 is a workaround for this issue: https://github.com/dart-lang/test/issues/2294
9
-
dart run test_html_builder:browser_aggregate_tests --test-args="--concurrency=1"# concurrency=1 is a workaround for this issue: https://github.com/dart-lang/test/issues/2294
8
+
dart run build_runner test
9
+
dart run test_html_builder:browser_aggregate_tests
10
10
11
11
# These commands target a scenario where there is no build cache and someone
12
12
# uses build filters to run a subset of tests.
13
13
dart run build_runner clean
14
-
dart run build_runner test --delete-conflicting-outputs --build-filter="test/unit/css_test.**" -- --concurrency=1 test/unit/css_test.dart# concurrency=1 is a workaround for this issue: https://github.com/dart-lang/test/issues/2294
14
+
dart run build_runner test --delete-conflicting-outputs --build-filter="test/unit/css_test.**" -- test/unit/css_test.dart
0 commit comments