flutter/packages/flutter_tools/test/commands.shard/permeable
Victor Eronmosele 4c929f0f44
Prevent test folder deletion on running flutter create --empty on an existing app project (#147160)
This PR modifies the `flutter create --empty` command to not delete the `test/` folder when run on an existing app project. 

Before:
```bash
flutter create my_app --empty
mkdir my_app/test
if test -d my_app/test; then echo "test exists"; else echo "test does not exist"; fi # test exists
flutter create my_app --empty  
if test -d my_app/test; then echo "test exists"; else echo "test does not exist"; fi # test does not exist
```

After:
```bash
flutter create my_app --empty
mkdir my_app/test
if test -d my_app/test; then echo "test exists"; else echo "test does not exist"; fi # test exists
flutter create my_app --empty  
if test -d my_app/test; then echo "test exists"; else echo "test does not exist"; fi # test exists
```
Fixes https://github.com/flutter/flutter/issues/134928
2024-05-22 17:37:05 +00:00
..
data Bump flutter_lints to 3.0 (#136841) 2023-10-18 23:53:08 +00:00
build_aar_test.dart [flutter_tools] disable flutter build AAR for plugins (#137878) 2023-11-08 23:12:08 +00:00
build_apk_test.dart Migrate command usage values (#139383) 2023-12-07 16:12:03 +00:00
build_appbundle_test.dart Add aab as alias for appbundle (#143855) 2024-02-21 18:19:41 +00:00
build_bundle_test.dart Migrate command usage values (#139383) 2023-12-07 16:12:03 +00:00
create_test.dart Prevent test folder deletion on running flutter create --empty on an existing app project (#147160) 2024-05-22 17:37:05 +00:00
devices_test.dart Separate attached and wireless devices (#122615) 2023-03-15 16:35:05 +00:00
packages_test.dart Be tolerant of backticks around directory name in pub output. (#145768) 2024-03-26 19:04:52 +00:00
script_test.dart Null safety migration of packages/flutter_tools/test/commands.shard/permeable (#110710) 2022-09-06 10:22:09 -07:00
upgrade_test.dart Fix an ordering dependency in the flutter_tools upgrade test (#129131) 2023-06-19 11:18:16 -07:00