Silence linter
[benchmarks-js.git] / max.js
diff --git a/max.js b/max.js
index d0d1381154170fa72776fa506f33def2aa075c30..bfa521cce36722fc35f72dc991d48fd9413b2e4a 100644 (file)
--- a/max.js
+++ b/max.js
@@ -1,19 +1,7 @@
 const Benchmark = require('benny')
+const { generateRandomNumberArray } = require('./benchmark-utils')
 
-const testArray = [
-  83, 93, 27, 29, 2828, 234, 23, 56, 32, 56, 67, 77, 32, 45, 93, 17, 28, 83, 62,
-  99, 36, 28, 93, 27, 29, 2828, 234, 23, 56, 32, 56, 67, 77, 32, 45, 93, 17, 28,
-  83, 62, 99, 36, 28, 93, 27, 29, 2828, 234, 23, 56, 32, 56, 67, 77, 32, 45, 93,
-  17, 28, 83, 62, 99, 36, 28, 93, 27, 29, 2828, 234, 23, 56, 32, 56, 67, 77, 32,
-  45, 93, 17, 28, 83, 62, 99, 36, 28, 93, 27, 29, 2828, 234, 23, 56, 32, 56, 67,
-  77, 32, 45, 93, 17, 28, 83, 62, 99, 36, 28, 93, 27, 29, 2828, 234, 23, 56, 32,
-  56, 67, 77, 32, 45, 93, 17, 28, 83, 62, 99, 36, 28, 93, 27, 29, 2828, 234, 23,
-  56, 32, 56, 67, 77, 32, 45, 93, 17, 28, 83, 62, 99, 36, 28, 93, 27, 29, 2828,
-  234, 23, 56, 32, 56, 67, 77, 32, 45, 93, 17, 28, 83, 62, 99, 36, 28, 93, 27,
-  29, 2828, 234, 23, 56, 32, 56, 67, 77, 32, 45, 93, 17, 28, 83, 62, 99, 36, 28,
-  93, 27, 29, 2828, 234, 23, 56, 32, 56, 67, 77, 32, 45, 93, 17, 28, 83, 62, 99,
-  36, 28
-]
+const testArray = generateRandomNumberArray(10000)
 
 /**
  *
@@ -62,7 +50,7 @@ Benchmark.suite(
   Benchmark.add('reduceTernaryMax', () => {
     reduceTernaryMax(testArray)
   }),
-  Benchmark.add('reduceMathMax', () => {
+  Benchmark.add('reduceMath.max', () => {
     reduceMathMax(testArray)
   }),
   Benchmark.add('sortMax', () => {
@@ -70,6 +58,7 @@ Benchmark.suite(
   }),
   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 })
 )