build(deps): that repo has no CI tests to validate a PR
[benchmarks-js.git] / max.mjs
diff --git a/max.mjs b/max.mjs
index de7602ea57f669bb7f8c00539074fe92712cb62d..8f1f698a6a8b5f11488444913b70e17b4c11005d 100644 (file)
--- a/max.mjs
+++ b/max.mjs
@@ -1,5 +1,5 @@
 import Benchmark from 'benny'
-import { generateRandomNumberArray } from './benchmark-utils.js'
+import { generateRandomNumberArray } from './benchmark-utils.mjs'
 
 const size = 10000
 const testArray = generateRandomNumberArray(size)
@@ -66,6 +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 => {
+).catch((err) => {
   console.error(err)
 })