deno/website
Bert Belder 6cfc6b5d51
test: disable incorrect tests
These tests weren't running because with the old timer implementation
time-outs were sometimes lost, and the test harness uses setTimeout
to throw errors after a test has failed.
2018-10-03 13:28:00 -07:00
..
app.js Hide line with value zero (#882) 2018-10-03 05:21:26 -04:00
app_test.js test: disable incorrect tests 2018-10-03 13:28:00 -07:00
index.html Add benchmark descriptions. 2018-09-27 05:00:23 -04:00
README.md benchmark: track the binary size (#804) 2018-09-23 11:54:07 -04:00

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
  }
}