Notes/apps/desktop-e2e/src/support/test-setup.ts
2025-04-23 13:10:13 +03:00

10 lines
271 B
TypeScript

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