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
+18-1Lines changed: 18 additions & 1 deletion
Original file line number
Diff line number
Diff line change
@@ -34,11 +34,12 @@ const expectedTestUsage = [
34
34
'-j, --concurrency The number of concurrent test suites run. Automatically set to 1 when --platform is specified.\n'
35
35
' (defaults to "4")\n'
36
36
'-t, --tags Run only tests associated with the specified tags.\n'
37
-
' --exclude-coverage A glob which will be used to exclude files that match from the coverage.\n'
37
+
" --exclude-coverage A glob which will be used to exclude files that match from the coverage (e.g. '**/*.g.dart').\n"
38
38
'-x, --exclude-tags Run only tests that do not have the specified tags.\n'
39
39
' --min-coverage Whether to enforce a minimum coverage percentage.\n'
40
40
' --test-randomize-ordering-seed The seed to randomize the execution order of test cases within test files.\n'
41
41
' --update-goldens Whether "matchesGoldenFile()" calls within your test methods should update the golden files.\n'
42
+
' --fail-fast Stop running tests after the first failure.\n'
42
43
' --force-ansi Whether to force ansi output. If not specified, it will maintain the default behavior based on stdout and stderr.\n'
43
44
' --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'
44
45
' --dart-define-from-file=<use-define-config.json|.env> The path of a .json or .env file containing key-value pairs that will be available as environment variables. These can be accessed using the String.fromEnvironment, bool.fromEnvironment, and int.fromEnvironment constructors. Multiple defines can be passed by repeating "--dart-define-from-file" multiple times. Entries from "--dart-define" with identical keys take precedence over entries from these files.\n'
0 commit comments