mirror of
https://github.com/discordeno/discordeno.git
synced 2026-06-03 01:10:07 +00:00
* Do some code changes & run prettier and eslint
* Fix test:test-type script
* Apply code review suggestions
* update heartbeat interval & add a reason for the specific value
* Fix husky error
* Update to TS 5.5
And use ${configDir}
* Fix test.json tsconfig base
---------
Co-authored-by: Skillz4Killz <23035000+Skillz4Killz@users.noreply.github.com>
13 lines
406 B
TypeScript
13 lines
406 B
TypeScript
import fs from 'node:fs/promises'
|
|
import { suite } from './benchmarkSuite.js'
|
|
|
|
const benchmarks = await fs.readdir(new URL('./benchmarks', import.meta.url)).then((files) => files.filter((file) => file.endsWith('.js')))
|
|
|
|
await Promise.all(benchmarks.map(async (file) => await import(`./benchmarks/${file}`)))
|
|
|
|
suite
|
|
.on('cycle', function (event: any) {
|
|
console.log(String(event.target))
|
|
})
|
|
.run()
|