diff --git a/packages/integration_test/lib/integration_test_driver.dart b/packages/integration_test/lib/integration_test_driver.dart index 38df03dbf7..813dc9cefc 100644 --- a/packages/integration_test/lib/integration_test_driver.dart +++ b/packages/integration_test/lib/integration_test_driver.dart @@ -14,13 +14,7 @@ import 'package:path/path.dart' as path; import 'common.dart'; -/// 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. -String testOutputsDirectory = - Platform.environment['FLUTTER_TEST_OUTPUTS_DIR'] ?? 'build'; +export 'package:flutter_driver/flutter_driver.dart' show testOutputsDirectory; /// The callback type to handle [Response.data] after the test /// succeeds. diff --git a/packages/integration_test/lib/integration_test_driver_extended.dart b/packages/integration_test/lib/integration_test_driver_extended.dart index f4a7824abd..760006322e 100644 --- a/packages/integration_test/lib/integration_test_driver_extended.dart +++ b/packages/integration_test/lib/integration_test_driver_extended.dart @@ -14,13 +14,7 @@ import 'package:path/path.dart' as path; import 'common.dart'; -/// 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. -String testOutputsDirectory = - Platform.environment['FLUTTER_TEST_OUTPUTS_DIR'] ?? 'build'; +export 'package:flutter_driver/flutter_driver.dart' show testOutputsDirectory; /// The callback type to handle [Response.data] after the test /// succeeds.