testOutputsDirectory top-level property

String testOutputsDirectory

Flutter Driver test output directory.

Tests should write any output files to this directory. Defaults to the path set in the FLUTTER_TEST_OUTPUTS_DIR environment variable, or build if unset.

Implementation

String get testOutputsDirectory => Platform.environment['FLUTTER_TEST_OUTPUTS_DIR'] ?? 'build';