build: bump volta node version
[e-mobility-charging-stations-simulator.git] / tests / utils / ConfigurationUtils.test.ts
1 /* eslint-disable @typescript-eslint/no-unsafe-member-access */
2 import { describe, it } from 'node:test'
3
4 import { expect } from 'expect'
5
6 import { FileType } from '../../src/types/index.js'
7 import { handleFileException, logPrefix } from '../../src/utils/ConfigurationUtils.js'
8
9 await describe('ConfigurationUtils test suite', async () => {
10 await it('Verify logPrefix()', () => {
11 expect(logPrefix()).toContain(' Simulator configuration |')
12 })
13
14 await it('Verify handleFileException()', t => {
15 t.mock.method(console, 'error')
16 const error = new Error()
17 error.code = 'ENOENT'
18 expect(() => {
19 handleFileException('path/to/module.js', FileType.Authorization, error, 'log prefix |')
20 }).toThrow(error)
21 expect(console.error.mock.calls.length).toBe(1)
22 })
23 })