Project

General

Profile

Download (799 Bytes) Statistics
| Branch: | Tag: | Revision:
import * as ace from 'ace-builds/src-noconflict/ace';

ace.config.set('basePath', '/assets/ui/');
ace.config.set('modePath', '');
ace.config.set('themePath', '');

jest.mock('jed');
jest.mock('./assets/javascripts/react_app/Root/Context/ForemanContext', () => ({
useForemanVersion: () => 'mocked_version',
useForemanSettings: () => ({ perPage: 5 }),
useForemanDocUrl: () => '/url',
useForemanLocation: () => ({ title: 'location' }),
useForemanOrganization: () => ({ title: 'organization' }),
getHostsPageUrl: displayNewHostsPage =>
displayNewHostsPage ? '/new/hosts' : '/hosts',
}));
jest.mock('./assets/javascripts/react_app/common/I18n');
jest.mock('./assets/javascripts/foreman_tools', () => ({
foremanUrl: url => url,
}));
jest.mock('./assets/javascripts/foreman_navigation');
    (1-1/1)