global

def execution_time_ms

Used for display and as the value of `result`/`_` variables in performance expectations
Convert nanoseconds to milliseconds for human-readable timing
def execution_time_ms
  execution_time_ns ? (execution_time_ns / 1_000_000.0).round(2) : nil
end