import { expect } from 'expect'
import { FileType } from '../../src/types/index.js'
-import { handleFileException } from '../../src/utils/ConfigurationUtils.js'
+import { handleFileException, logPrefix } from '../../src/utils/ConfigurationUtils.js'
await describe('ConfigurationUtils test suite', async () => {
+ await it('Verify logPrefix()', () => {
+ expect(logPrefix()).toContain(' Simulator configuration |')
+ })
+
await it('Verify handleFileException()', t => {
t.mock.method(console, 'error')
const error = new Error()