Merge pull request '3529-fix(sms): static response for backTest' (#850) from 3529-client_sms into dev
gitea/salix/pipeline/head This commit looks good Details

Reviewed-on: #850
Reviewed-by: Carlos Jimenez Ruiz <carlosjr@verdnatura.es>
This commit is contained in:
Carlos Jimenez Ruiz 2022-01-18 12:51:44 +00:00
commit eba962991b
1 changed files with 7 additions and 6 deletions

View File

@ -52,12 +52,13 @@ module.exports = Self => {
let response; let response;
try { try {
if (process.env.NODE_ENV !== 'production') if (process.env.NODE_ENV !== 'production')
params.fake = 1; response = {result: [{status: 'ok'}]};
else {
const jsonTest = { const jsonTest = {
json: params json: params
}; };
response = await got.post(smsConfig.uri, jsonTest).json(); response = await got.post(smsConfig.uri, jsonTest).json();
}
} catch (e) { } catch (e) {
console.error(e); console.error(e);
} }