I know that you can write your own test runners, but could you also do this: ```rust #[wasm_bindgen_bench] fn my_benchmark() { // ... } ``` ? --- The impetus here is me working on a renderer and wanted an easily compare potential performance enhancements in real browsers. Something like this would make that trivial... but I don't know if this is even technically possible at this time? Cheers!