mattermost-mobile/detox/e2e/support/server_api/client.js
2020-11-17 14:20:58 -03:00

13 lines
334 B
JavaScript

// Copyright (c) 2015-present Mattermost, Inc. All Rights Reserved.
// See LICENSE.txt for license information.
import axios from 'axios';
import testConfig from '../test_config';
export const client = axios.create({
baseURL: testConfig.siteUrl,
headers: {'X-Requested-With': 'XMLHttpRequest'},
});
export default client;