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: test/src/commands/test/test_test.dart
+24-2Lines changed: 24 additions & 2 deletions
Original file line number
Diff line number
Diff line change
@@ -19,15 +19,16 @@ const expectedTestUsage = [
19
19
''' --coverage Whether to collect coverage information.\n'''
20
20
'''-r, --recursive Run tests recursively for all nested packages.\n'''
21
21
''' --[no-]optimization Whether to apply optimizations for test performance.\n'''
22
-
' (defaults to on)\n'
22
+
''' (defaults to on)\n'''
23
23
'''-j, --concurrency The number of concurrent test suites run.\n'''
24
-
' (defaults to "4")\n'
24
+
''' (defaults to "4")\n'''
25
25
'''-t, --tags Run only tests associated with the specified tags.\n'''
26
26
''' --exclude-coverage A glob which will be used to exclude files that match from the coverage.\n'''
27
27
'''-x, --exclude-tags Run only tests that do not have the specified tags.\n'''
28
28
''' --min-coverage Whether to enforce a minimum coverage percentage.\n'''
29
29
''' --test-randomize-ordering-seed The seed to randomize the execution order of test cases within test files.\n'''
30
30
''' --update-goldens Whether "matchesGoldenFile()" calls within your test methods should update the golden files.\n'''
31
+
''' --dart-define=<foo=bar> Additional key-value pairs that will be available as constants from the String.fromEnvironment, bool.fromEnvironment, int.fromEnvironment, and double.fromEnvironment constructors. Multiple defines can be passed by repeating "--dart-define" multiple times.\n'''
0 commit comments