File size: 443 Bytes
23ac194
 
 
 
 
 
 
 
 
 
1
2
3
4
5
6
7
8
9
10
11
import { errorCodes } from '../../fastify.js'
import { test } from 'node:test'

test('errorCodes in ESM', async t => {
  // test a custom fastify error using errorCodes with ESM
  const customError = errorCodes.FST_ERR_VALIDATION('custom error message')
  t.assert.ok(typeof customError !== 'undefined')
  t.assert.ok(customError instanceof errorCodes.FST_ERR_VALIDATION)
  t.assert.strictEqual(customError.message, 'custom error message')
})