Skip to content
Merged
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
Original file line number Diff line number Diff line change
Expand Up @@ -80,12 +80,17 @@ export default function ({ getService, getPageObjects }: FtrProviderContext) {
await expectCascadeRequestTimestampToChange(baseline);

const firstTimestamp = await getCascadeRequestTimestamp();
// close first row so the second row is in view
await discover.toggleCascadeLayoutRow(firstRowId);

await discover.toggleCascadeLayoutRow(secondRowId);
await expectCascadeRequestTimestampToChange(firstTimestamp);

const secondTimestamp = await getCascadeRequestTimestamp();
// close the just opened second row so the first row is in view
await discover.toggleCascadeLayoutRow(secondRowId);

// reopen previously expanded row
await discover.toggleCascadeLayoutRow(firstRowId);
await expectCascadeRequestTimestampToStay(secondTimestamp);
});
Expand Down
Loading