You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
|
/* eslint-disable */
|
|
|
|
import axios from 'axios';
|
|
|
|
module.exports = async function () {
|
|
// Configure axios for tests to use.
|
|
const host = process.env.HOST ?? 'localhost';
|
|
const port = process.env.PORT ?? '3000';
|
|
axios.defaults.baseURL = `http://${host}:${port}`;
|
|
};
|