Notes/apps/desktop-e2e/src/support/test-setup.ts

10 lines
271 B
TypeScript
Raw Normal View History

/* 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}`;
};