feat: fix tests

This commit is contained in:
lohxt1 2024-11-19 12:36:20 +05:30
parent d0ef70473d
commit b206b70d2e

View File

@ -6,14 +6,18 @@ describe('prepare-request: prepareRequest', () => {
describe('Decomments request body', () => {
it('If request body is valid JSON', async () => {
const body = { mode: 'json', json: '{\n"test": "{{someVar}}" // comment\n}' };
const expected = { test: '{{someVar}}' };
const expected = `{
\"test\": \"{{someVar}}\"
}`;
const result = prepareRequest({ body });
expect(result.data).toEqual(expected);
});
it('If request body is not valid JSON', async () => {
const body = { mode: 'json', json: '{\n"test": {{someVar}} // comment\n}' };
const expected = '{\n"test": {{someVar}} \n}';
const expected = `{
\"test\": {{someVar}}
}`;
const result = prepareRequest({ body });
expect(result.data).toEqual(expected);
});