Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

[Logs UI] Comment out flakey column reordering test steps #41743

Merged
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 @@ -98,7 +98,8 @@ export default ({ getPageObjects, getService }: KibanaFunctionalTestDefaultProvi
await infraSourceConfigurationFlyout.addTimestampLogColumn();
await infraSourceConfigurationFlyout.addFieldLogColumn('host.name');

await infraSourceConfigurationFlyout.moveLogColumn(0, 1);
// TODO: make test more robust
// await infraSourceConfigurationFlyout.moveLogColumn(0, 1);

await infraSourceConfigurationFlyout.saveConfiguration();
await infraSourceConfigurationFlyout.closeFlyout();
Expand All @@ -107,7 +108,9 @@ export default ({ getPageObjects, getService }: KibanaFunctionalTestDefaultProvi
it('renders the changed log columns with their headers', async () => {
const columnHeaderLabels = await infraLogStream.getColumnHeaderLabels();

expect(columnHeaderLabels).to.eql(['host.name', 'Timestamp', '']);
// TODO: make test more robust
// expect(columnHeaderLabels).to.eql(['host.name', 'Timestamp', '']);
expect(columnHeaderLabels).to.eql(['Timestamp', 'host.name', '']);

const logStreamEntries = await infraLogStream.getStreamEntries();

Expand Down