testArgs property

List<String>? testArgs
getter/setter pair

The args to pass to the dart test process (either directly or through the dart run build_runner test process if applicable).

Run dart test -h to see all available args.

Note that most of the command-line options for the dart test process also have dart_test.yaml configuration counterparts. Rather than configuring this field, it is preferred that the project be configured via dart_test.yaml so that the configuration is used even when running tests through some means other than ddev.

Implementation

List<String>? testArgs;