catch benchmarks execution error
authorJérôme Benoit <jerome.benoit@sap.com>
Mon, 5 Jun 2023 21:32:46 +0000 (23:32 +0200)
committerJérôme Benoit <jerome.benoit@sap.com>
Mon, 5 Jun 2023 21:32:46 +0000 (23:32 +0200)
Signed-off-by: Jérôme Benoit <jerome.benoit@sap.com>
12 files changed:
busy-wait.js
deep-clone-object.js
empty-array.js
fibonacci.js
is-empty-object.js
is-undefined.js
max.js
promise-handling.js
quick-select.js
random.js
shallow-clone-object.js
uuid-generator.js

index 3316db96bedab3163f0f7b2c4e18a1b54096cb8d..a851a30e911870542cd9612b2777c7654c057a36 100644 (file)
@@ -77,4 +77,6 @@ Benchmark.suite(
   Benchmark.save({ file: 'busy-wait', format: 'json', details: true }),
   Benchmark.save({ file: 'busy-wait', format: 'chart.html', details: true }),
   Benchmark.save({ file: 'busy-wait', format: 'table.html', details: true })
-)
+).catch(err => {
+  console.error(err)
+})
index 056e1dedea871edf687fb3ee5cfea6729a3444ee..0f480c424263664a2e02ab3d8663a9bb87c65bf6 100644 (file)
@@ -37,4 +37,6 @@ Benchmark.suite(
     format: 'table.html',
     details: true
   })
-)
+).catch(err => {
+  console.error(err)
+})
index a56a82461f8ef272cf0210df5e81abd069ae8cc6..c900a4239e4e4a04f17a5b92e3cadebb5d91377c 100644 (file)
@@ -30,4 +30,6 @@ Benchmark.suite(
   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 })
-)
+).catch(err => {
+  console.error(err)
+})
index 286c69cf498c688dbd48d99763b80c18d53c2f7c..3cce5294b82abc8c5299e40cbccb25724fc1df3f 100644 (file)
@@ -63,4 +63,6 @@ Benchmark.suite(
   Benchmark.save({ file: 'fibonacci', format: 'json', details: true }),
   Benchmark.save({ file: 'fibonacci', format: 'chart.html', details: true }),
   Benchmark.save({ file: 'fibonacci', format: 'table.html', details: true })
-)
+).catch(err => {
+  console.error(err)
+})
index 394555bd1810a3e933cfa5b5928fd8f03b6caec5..02c3a29c809d00f4d9ab70083688a94c7ad21eb9 100644 (file)
@@ -36,4 +36,6 @@ Benchmark.suite(
     format: 'table.html',
     details: true
   })
-)
+).catch(err => {
+  console.error(err)
+})
index bc009331f38ebd09b2f7783b1bdcd7d7773a261f..549171ef78b9adc34280ad3c7df3334e2e2d6dce 100644 (file)
@@ -25,4 +25,6 @@ Benchmark.suite(
     format: 'table.html',
     details: true
   })
-)
+).catch(err => {
+  console.error(err)
+})
diff --git a/max.js b/max.js
index be3f7819314f12757d34e124b445d4941a85a114..5a486473e9d6fa3afa4aa7da9347ce6384a28e49 100644 (file)
--- a/max.js
+++ b/max.js
@@ -66,4 +66,6 @@ Benchmark.suite(
   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 })
-)
+).catch(err => {
+  console.error(err)
+})
index 4e83dc54268f278c6d5de9d2dd29b96cf873a4d3..11e0a96493056430a470792173f8fd4fd50f04d9 100644 (file)
@@ -58,4 +58,6 @@ Benchmark.suite(
     format: 'table.html',
     details: true
   })
-)
+).catch(err => {
+  console.error(err)
+})
index d45a9e8b4bf653c38142ebabf026cd59ef0adc44..7a2486a804e144e5686c2002e2ad492d690a5f8a 100644 (file)
@@ -264,4 +264,6 @@ Benchmark.suite(
     format: 'table.html',
     details: true
   })
-)
+).catch(err => {
+  console.error(err)
+})
index c3e5c4a8383c3821c223c40921a95ea63da8bb3e..8c0fa86e669b384e4d812478e00b6a61716031c8 100644 (file)
--- a/random.js
+++ b/random.js
@@ -100,4 +100,6 @@ Benchmark.suite(
     format: 'table.html',
     details: true
   })
-)
+).catch(err => {
+  console.error(err)
+})
index 9201f838d7459423daca2576ef1c65852c3b1135..f8e193b65e701a7d91294cfa6bf973cd7d6b696d 100644 (file)
@@ -33,4 +33,6 @@ Benchmark.suite(
     format: 'table.html',
     details: true
   })
-)
+).catch(err => {
+  console.error(err)
+})
index 6855cec964cf2c57743fa042b0d6c5dc56a2f500..08641c12ebc451c01be8e5eb56d5f8728600cec5 100644 (file)
@@ -27,4 +27,6 @@ Benchmark.suite(
     format: 'table.html',
     details: true
   })
-)
+).catch(err => {
+  console.error(err)
+})