mirror of
https://github.com/elastic/kibana.git
synced 2025-04-24 17:59:23 -04:00
* refactor * replaces 'clearTimeline' for 'createNewTimeline' * fixes typecheck issue Co-authored-by: Elastic Machine <elasticmachine@users.noreply.github.com> Co-authored-by: Elastic Machine <elasticmachine@users.noreply.github.com>
This commit is contained in:
parent
90dd6e0af3
commit
5af82baccb
1 changed files with 6 additions and 2 deletions
|
@ -6,15 +6,19 @@
|
|||
|
||||
import { drag, drop } from '../../lib/drag_n_drop/helpers';
|
||||
import { populateTimeline } from '../../lib/fields_browser/helpers';
|
||||
import { toggleFirstTimelineEventDetails } from '../../lib/timeline/helpers';
|
||||
import { createNewTimeline, toggleFirstTimelineEventDetails } from '../../lib/timeline/helpers';
|
||||
import { HOSTS_PAGE } from '../../lib/urls';
|
||||
import { loginAndWaitForPage, DEFAULT_TIMEOUT } from '../../lib/util/helpers';
|
||||
|
||||
describe('toggle column in timeline', () => {
|
||||
beforeEach(() => {
|
||||
before(() => {
|
||||
loginAndWaitForPage(HOSTS_PAGE);
|
||||
});
|
||||
|
||||
afterEach(() => {
|
||||
createNewTimeline();
|
||||
});
|
||||
|
||||
const timestampField = '@timestamp';
|
||||
const idField = '_id';
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue