File size: 319 Bytes
23ac194
 
 
 
 
 
 
 
 
1
2
3
4
5
6
7
8
9
10
'use strict'

const benchmark = require('benchmark')
const createError = require('..')

new benchmark.Suite()
  .add('create FastifyError', function () { createError('CODE', 'Not available') }, { minSamples: 100 })
  .on('cycle', function onCycle (event) { console.log(String(event.target)) })
  .run({ async: false })