[path_provider_android] Disable getExternalStorageDirectories (type: ...) test (#5619)

Disables the `getExternalStorageDirectories (type: ...)` integration test in `path_provider_android` that is extremely flaky (particularly on AVDs running Android 34) to reduce the impact it has had on developer productivity.

Fixes https://github.com/flutter/flutter/issues/139378.
This commit is contained in:
Camille Simon
2023-12-08 10:24:24 -08:00
committed by GitHub
parent 1ded83092c
commit b7bf0373a7

View File

@ -78,7 +78,9 @@ void main() {
for (final String result in directories!) {
_verifySampleFile(result, '$type');
}
});
},
// TODO(camsim99): Fix https://github.com/flutter/flutter/issues/139808.
skip: true);
}
}