diff --git a/src/utils/__tests__/jsonToTextPlain.test.ts b/src/utils/__tests__/jsonToTextPlain.test.ts index 99b6ad02..42d1e63e 100644 --- a/src/utils/__tests__/jsonToTextPlain.test.ts +++ b/src/utils/__tests__/jsonToTextPlain.test.ts @@ -8,7 +8,7 @@ describe('Utils', () => { }; const actual = jsonToTextPlain(json); - const expected = '"key": "value"
' + '"anotherKey": "anotherValue"'; + const expected = '"key": "value"\n' + '"anotherKey": "anotherValue"\n'; expect(actual).toEqual(expected); }); });