|
|
@ -447,7 +447,10 @@ describe('API', async () => {
|
|
|
|
|
|
|
|
|
|
|
|
let body = {};
|
|
|
|
let body = {};
|
|
|
|
let type = 'json';
|
|
|
|
let type = 'json';
|
|
|
|
if (context[method].hasOwnProperty('requestBody') && context[method].requestBody.content['application/json']) {
|
|
|
|
if (
|
|
|
|
|
|
|
|
context[method].hasOwnProperty('requestBody') &&
|
|
|
|
|
|
|
|
context[method].requestBody.required !== false &&
|
|
|
|
|
|
|
|
context[method].requestBody.content['application/json']) {
|
|
|
|
body = buildBody(context[method].requestBody.content['application/json'].schema.properties);
|
|
|
|
body = buildBody(context[method].requestBody.content['application/json'].schema.properties);
|
|
|
|
} else if (context[method].hasOwnProperty('requestBody') && context[method].requestBody.content['multipart/form-data']) {
|
|
|
|
} else if (context[method].hasOwnProperty('requestBody') && context[method].requestBody.content['multipart/form-data']) {
|
|
|
|
type = 'form';
|
|
|
|
type = 'form';
|
|
|
|