Context
During review of PR #274, a potential test clarity issue was identified in test/static/cache_busting_static_handler_test.dart.
Issue
In the test group "Given static asset served outside of cache busting mountPrefix":
- The test setup creates a file
logo.png in the other directory
- The static handler is mounted at both
/static and /other
- The first test requests
/static/logo.png instead of /other/logo.png
The test currently passes, but the request path may not align with the test group description and setup.
Backlinks