2022-12-20 12:11:25 +00:00
|
|
|
import { promisify } from 'util'
|
|
|
|
import Request from 'request'
|
2019-07-09 18:12:30 +00:00
|
|
|
|
2022-12-20 12:11:25 +00:00
|
|
|
export const PORT = 3005
|
2019-07-09 18:12:30 +00:00
|
|
|
|
2020-06-03 08:52:36 +00:00
|
|
|
const BASE_URL = `http://${process.env.HTTP_TEST_HOST || 'localhost'}:${PORT}`
|
2019-07-09 18:12:30 +00:00
|
|
|
|
2022-12-20 12:11:25 +00:00
|
|
|
const request = Request.defaults({
|
2019-07-09 18:12:30 +00:00
|
|
|
baseUrl: BASE_URL,
|
|
|
|
headers: {
|
2021-07-13 11:04:47 +00:00
|
|
|
'Content-Type': 'application/json',
|
2019-07-09 18:12:30 +00:00
|
|
|
},
|
2021-07-13 11:04:47 +00:00
|
|
|
followRedirect: false,
|
2019-07-09 18:12:30 +00:00
|
|
|
})
|
|
|
|
|
2022-12-20 12:11:25 +00:00
|
|
|
export const get = promisify(request.get)
|
|
|
|
export const post = promisify(request.post)
|
|
|
|
export const del = promisify(request.del)
|