testOutputsDirectory top-level property

String testOutputsDirectory
getter/setter pair

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 testOutputsDirectory =
    Platform.environment['FLUTTER_TEST_OUTPUTS_DIR'] ?? 'build';