Improve benny reports
authorJérôme Benoit <jerome.benoit@sap.com>
Mon, 24 Oct 2022 09:36:44 +0000 (11:36 +0200)
committerJérôme Benoit <jerome.benoit@sap.com>
Mon, 24 Oct 2022 09:36:44 +0000 (11:36 +0200)
Signed-off-by: Jérôme Benoit <jerome.benoit@sap.com>
empty-array.js
max.js
random.js

index 9ddc17d45b06d37b57c77129d0d1ed7b69620480..0c5f725e43122a307beae3468f05919a48e130de 100644 (file)
@@ -26,6 +26,7 @@ Benchmark.suite(
   }),
   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 })
 )
diff --git a/max.js b/max.js
index 5525c9293451fd335924e88a15698b43cf2e31ae..367a859126e91b8f2b70a04a41422f31f2951a22 100644 (file)
--- a/max.js
+++ b/max.js
@@ -50,7 +50,7 @@ Benchmark.suite(
   Benchmark.add('reduceTernaryMax', () => {
     reduceTernaryMax(testArray)
   }),
-  Benchmark.add('reduceMathMax', () => {
+  Benchmark.add('reduceMath.max', () => {
     reduceMathMax(testArray)
   }),
   Benchmark.add('sortMax', () => {
@@ -58,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 })
 )
index 72b0b919e27b818d339b4f14d8c114bba40b534d..1eeeedd362d90903caab90e567ab79d69b2bf68a 100644 (file)
--- a/random.js
+++ b/random.js
@@ -41,6 +41,19 @@ Benchmark.suite(
   }),
   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
+  })
 )