Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 6 additions & 0 deletions x-pack/plugins/security_solution/common/constants.ts
Original file line number Diff line number Diff line change
Expand Up @@ -143,3 +143,9 @@ export const showAllOthersBucket: string[] = [
'destination.ip',
'user.name',
];

/**
* CreateTemplateTimelineBtn
* Remove the comment here to enable template timeline
*/
export const disableTemplate = true;

This file was deleted.

Original file line number Diff line number Diff line change
Expand Up @@ -82,7 +82,6 @@ describe('Matrix Histogram Component', () => {
});
describe('on initial load', () => {
test('it renders MatrixLoader', () => {
expect(wrapper.html()).toMatchSnapshot();
expect(wrapper.find('MatrixLoader').exists()).toBe(true);
});
});
Expand Down Expand Up @@ -117,7 +116,6 @@ describe('Matrix Histogram Component', () => {
wrapper.update();
});
test('it renders no MatrixLoader', () => {
expect(wrapper.html()).toMatchSnapshot();
expect(wrapper.find(`MatrixLoader`).exists()).toBe(false);
});

Expand Down
Loading