All files riskeval.js

17.64% Statements 6/34
0% Branches 0/1
0% Functions 0/1
17.64% Lines 6/34

Press n or j to go to the next uncovered block, b, p or k for the previous block.

1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 341x 1x                                                         1x 1x 1x 1x
const axios = require('axios')
 
class InsuranceRiskEval{
    apiKey;
    baseURL='https://vz1z84zy6f.execute-api.us-west-2.amazonaws.com/assess_risk/'
    #headers={ 
        'Content-Type': 'application/json'
      }
    constructor(apiKey , url){
        this.apiKey= apiKey
    }

    async assesRisk(data){
        try{
           let response =  await axios.post(this.baseURL,data,this.#headers)
           return response.data['_id'];
        }catch(err){
            throw Error(err.message)
        }
       
    }

    async getRiskEvalResult(id){
        try{
            await axios.get(this.baseURL+id,this.#headers)
        }catch(err){
            throw Error(err.message)
        } 
    }
}
 
module.exports = InsuranceRiskEval;
 
// export {RiskEval}