Delete app/test_driver directory#6187
Conversation
Greptile SummaryThis PR removes Key points:
Confidence Score: 5/5Safe to merge — no CI workflows use the deleted driver file and no runtime behaviour is changed. The only finding is a P2 style issue: four integration test files contain doc-comment run instructions that reference the now-deleted driver. This does not break any automated pipeline and does not affect app behaviour. Consider updating the Important Files Changed
Flowchart%%{init: {'theme': 'neutral'}}%%
flowchart TD
A[Developer runs integration tests] --> B{Method chosen}
B -->|flutter test| C["flutter test integration_test/test.dart\n✅ Works without driver file"]
B -->|flutter drive| D["flutter drive\n --driver=test_driver/integration_test.dart\n --target=integration_test/test.dart"]
D --> E["❌ Driver file no longer exists\nWill fail with FileNotFoundError"]
C --> F[Test runs successfully]
G[CI Workflows] --> H["No flutter drive usage in any\n.github/workflows/*.yml\n✅ CI unaffected"]
|
No description provided.