mirror of
https://github.com/denoland/deno.git
synced 2024-11-22 15:06:54 -05:00
545109cf2d
The benchmark was added in b7fd6e but was not surfaced in the UI. TODO: The tests should have failed and caught this situation. |
||
---|---|---|
.. | ||
app.js | ||
app_test.js | ||
index.html | ||
README.md |
About benchmark data
The benchmark chart supposes //website/data.json
has the signature of BenchmarkData[]
where BenchmarkData
is defined like the below:
interface ExecTimeData {
mean: number
stddev: number
user: number
system: number
min: number
max: number
}
interface BenchmarkData {
created_at: string,
sha1: string,
binary_size?: number,
benchmark: {
[key: string]: ExecTimeData
}
}