mirror of
https://github.com/elastic/kibana.git
synced 2025-04-24 01:38:56 -04:00
Be more explicit with which events we want (#119875)
This commit is contained in:
parent
a468b9850b
commit
2f73bd9892
1 changed files with 5 additions and 2 deletions
|
@ -490,8 +490,11 @@ export default function eventLogTests({ getService }: FtrProviderContext) {
|
|||
});
|
||||
});
|
||||
|
||||
const startEvent = events[0];
|
||||
const executeEvent = events[1];
|
||||
const executeEvents = getEventsByAction(events, 'execute');
|
||||
const executeStartEvents = getEventsByAction(events, 'execute-start');
|
||||
|
||||
const startEvent = executeStartEvents[0];
|
||||
const executeEvent = executeEvents[0];
|
||||
|
||||
expect(startEvent).to.be.ok();
|
||||
expect(executeEvent).to.be.ok();
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue