All files / src api_calls.js

72.73% Statements 8/11
50% Branches 1/2
40% Functions 2/5
100% Lines 6/6

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    2x   2x   2x   2x   2x   2x  
import axios from 'axios';
 
const API_URL = process.env.REACT_APP_API_URL || 'http://localhost:9000';
 
export const getPersons = () => axios.get(`${API_URL}/person/all`);
 
export const getPerson = id => axios.get(`${API_URL}/person/get/${id}`);
 
export const savePerson = data => axios.post(`${API_URL}/person/save`, data);
 
export const deletePerson = () => axios.get(`${API_URL}/person/remove`);
 
export const getVersion = () => axios.get(`${API_URL}/api/version`);