diff --git a/test/helpers/DiffHelpers.spec.ts b/test/helpers/DiffHelpers.spec.ts index 2db956b..0f77080 100644 --- a/test/helpers/DiffHelpers.spec.ts +++ b/test/helpers/DiffHelpers.spec.ts @@ -66,7 +66,7 @@ describe('formatDiffOutput function', () => { test('should throw error when firstDocuments is empty', () => { expect(() => formatDiffOutput(diffRemove as Operation[], {})).toThrowError( // eslint-disable-next-line quotes - new TypeError("Cannot read property 'production' of undefined") + new TypeError("cannot read properties of undefined (reading 'production')") ); });