}),
Benchmark.cycle(),
Benchmark.complete(),
- Benchmark.save({ file: 'empty-array', format: 'chart.html' }),
- Benchmark.save({ file: 'empty-array', format: 'table.html' })
+ Benchmark.save({ file: 'empty-array', format: 'json', details: true }),
+ Benchmark.save({ file: 'empty-array', format: 'chart.html', details: true }),
+ Benchmark.save({ file: 'empty-array', format: 'table.html', details: true })
)
Benchmark.add('reduceTernaryMax', () => {
reduceTernaryMax(testArray)
}),
- Benchmark.add('reduceMathMax', () => {
+ Benchmark.add('reduceMath.max', () => {
reduceMathMax(testArray)
}),
Benchmark.add('sortMax', () => {
}),
Benchmark.cycle(),
Benchmark.complete(),
- Benchmark.save({ file: 'max', format: 'chart.html' }),
- Benchmark.save({ file: 'max', format: 'table.html' })
+ Benchmark.save({ file: 'max', format: 'json', details: true }),
+ Benchmark.save({ file: 'max', format: 'chart.html', details: true }),
+ Benchmark.save({ file: 'max', format: 'table.html', details: true })
)
}),
Benchmark.cycle(),
Benchmark.complete(),
- Benchmark.save({ file: 'random-integer-generator', format: 'chart.html' }),
- Benchmark.save({ file: 'random-integer-generator', format: 'table.html' })
+ Benchmark.save({
+ file: 'random-integer-generator',
+ format: 'json',
+ details: true
+ }),
+ Benchmark.save({
+ file: 'random-integer-generator',
+ format: 'chart.html',
+ details: true
+ }),
+ Benchmark.save({
+ file: 'random-integer-generator',
+ format: 'table.html',
+ details: true
+ })
)