mirror of
https://github.com/usebruno/bruno.git
synced 2024-11-22 07:53:34 +01:00
9c11e27d1c
Request body json was not decommented if json parsing fails, which would happen if variables are not quoted. Fixes usebruno#888
22 lines
819 B
JavaScript
22 lines
819 B
JavaScript
const { describe, it, expect } = require('@jest/globals');
|
|
|
|
const prepareRequest = require('../../src/runner/prepare-request');
|
|
|
|
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 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 result = prepareRequest({ body });
|
|
expect(result.data).toEqual(expected);
|
|
});
|
|
});
|
|
});
|