test: trivial refinements
authorJérôme Benoit <jerome.benoit@piment-noir.org>
Fri, 7 Jun 2024 12:11:55 +0000 (14:11 +0200)
committerJérôme Benoit <jerome.benoit@piment-noir.org>
Fri, 7 Jun 2024 12:11:55 +0000 (14:11 +0200)
Signed-off-by: Jérôme Benoit <jerome.benoit@piment-noir.org>
tests/utils/ConfigurationUtils.test.ts
tests/utils/ErrorUtils.test.ts

index e8bcf8e2b1fd057e0029ee324eae5523bf2d8651..f613ac8f4f05f2282463cc9b3c3b271c74c5cf2e 100644 (file)
@@ -10,7 +10,7 @@ await describe('ConfigurationUtils test suite', async () => {
     const error = new Error()
     error.code = 'ENOENT'
     expect(() => {
-      handleFileException('path/to/module.js', FileType.Authorization, error, 'log prefix')
+      handleFileException('path/to/module.js', FileType.Authorization, error, 'log prefix |')
     }).toThrow(error)
   })
 })
index 486a031635af4a0e00ae15957b9135a00265deb4..907d05fad5f136fbfed17f7fe527a813aa8114e9 100644 (file)
@@ -10,10 +10,10 @@ await describe('ErrorUtils test suite', async () => {
     const error = new Error()
     error.code = 'ENOENT'
     expect(() => {
-      handleFileException('path/to/module.js', FileType.Authorization, error, 'log prefix', {})
+      handleFileException('path/to/module.js', FileType.Authorization, error, 'log prefix |', {})
     }).toThrow(error)
     expect(() => {
-      handleFileException('path/to/module.js', FileType.Authorization, error, 'log prefix', {
+      handleFileException('path/to/module.js', FileType.Authorization, error, 'log prefix |', {
         throwError: false
       })
     }).not.toThrow()