-
Notifications
You must be signed in to change notification settings - Fork 8.6k
fixes other bucket request #26874
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
fixes other bucket request #26874
Changes from 1 commit
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
| Original file line number | Diff line number | Diff line change |
|---|---|---|
|
|
@@ -203,9 +203,13 @@ export default function ({ getService, getPageObjects }) { | |
| await PageObjects.visualize.selectAggregation('Terms'); | ||
| await PageObjects.visualize.selectField('extension.raw'); | ||
| await PageObjects.visualize.setSize(2); | ||
| await PageObjects.visualize.clickGo(); | ||
| await PageObjects.header.waitUntilLoadingHasFinished(); | ||
|
ppisljar marked this conversation as resolved.
|
||
|
|
||
| await PageObjects.visualize.toggleOtherBucket(); | ||
| await PageObjects.visualize.toggleMissingBucket(); | ||
| await PageObjects.visualize.clickGo(); | ||
|
Contributor
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. I noticed the test is failing on CI so you may change this anyway, but it might be worth adding some sort of comment here with an explanation for the duplication or link to the relevant issue. If I were to stumble across this test on my own, I would likely remove the duplicated lines, assuming it was a typo. |
||
| await PageObjects.header.waitUntilLoadingHasFinished(); | ||
| }); | ||
|
|
||
| it('should show correct data', async () => { | ||
|
|
||
Uh oh!
There was an error while loading. Please reload this page.