We generate JSON fixtures, images, database records, and API payloads for tests. Why not audio? Most engineering teams already treat test data as code. We generate: JSON fixtures Database records API payloads Configuration files Images Yet audio is often handled differently. A WAV file gets copied into a test directory and remains there as a binary asset that nobody wants to touch. tests/ └── fixtures/ └── notification.wav The test passes. The...