Skip to content

Commit

Permalink
Fix jest test path refs
Browse files Browse the repository at this point in the history
  • Loading branch information
Aaron Caldwell committed Apr 14, 2020
1 parent e95e0c1 commit b95101b
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
*/

jest.mock('../selectors/map_selectors', () => ({}));
jest.mock('../kibana_services', () => ({}));
jest.mock('../../../../../plugins/maps/public/kibana_services', () => ({}));

import { mapExtentChanged, setMouseCoordinates } from './map_actions';

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@
jest.mock('../../../../../plugins/maps/public/meta', () => {
return {};
});
jest.mock('../kibana_services');
jest.mock('../../../../../plugins/maps/public/kibana_services');

import { getInitialLayers } from './get_initial_layers';

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ jest.mock('../../../../../plugins/maps/public/reducers/non_serializable_instance
return {};
},
}));
jest.mock('../kibana_services', () => ({
jest.mock('../../../../../plugins/maps/public/kibana_services', () => ({
getTimeFilter: () => ({
getTime: () => {
return {
Expand Down

0 comments on commit b95101b

Please sign in to comment.