-
-
Notifications
You must be signed in to change notification settings - Fork 24
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
fix: no rp results when running tests with run command (#27)
- Loading branch information
1 parent
7f0cf35
commit 67f0527
Showing
3 changed files
with
134 additions
and
233 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,41 @@ | ||
const axios = require('axios').default; | ||
|
||
class RestClient { | ||
constructor() { | ||
this.axios = axios.create(); | ||
} | ||
|
||
async makePostRequest (url, payload = {}, headers = {}) { | ||
try { | ||
return this.axios.post(url, payload, { headers }); | ||
} catch (e) { | ||
throw new Error(e.message); | ||
} | ||
} | ||
|
||
async makePutRequest (url, payload = {}, headers = {}) { | ||
try { | ||
return this.axios.put(url, payload, { headers }); | ||
} catch (e) { | ||
throw new Error(e.message); | ||
} | ||
} | ||
|
||
async makeGetRequest(url, headers = {}) { | ||
try { | ||
return this.axios.get(url, { headers }); | ||
} catch (e) { | ||
throw new Error(e.message); | ||
} | ||
} | ||
|
||
async makeDeleteRequest(url, headers = {}) { | ||
try { | ||
return this.axios.delete(url, { headers }); | ||
} catch (e) { | ||
throw new Error(e.message); | ||
} | ||
} | ||
} | ||
|
||
module.exports = RestClient; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.