Skip to main content
Go to Latest
interface BenchmarkResult
import { type BenchmarkResult } from "https://deno.land/std@0.145.0/testing/bench.ts";

Defines the result of a single benchmark

Properties

name: string

The name of the benchmark

totalMs: number

The total time it took to run a given benchmark

runsCount: number

Times the benchmark was run in succession.

measuredRunsAvgMs: number

The average time of running the benchmark in milliseconds.

measuredRunsMs: number[]

The individual measurements in milliseconds it took to run the benchmark.