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

testing a flaky functional test ( chained input control) #144770

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 @@ -17,9 +17,7 @@ export default function ({ getService, getPageObjects }: FtrProviderContext) {
const find = getService('find');
const comboBox = getService('comboBox');

// FLAKY: https://github.com/elastic/kibana/issues/96997
// FLAKY: https://github.com/elastic/kibana/issues/100372
describe.skip('chained controls', function () {
describe('chained controls', function () {
this.tags('includeFirefox');

before(async () => {
Expand All @@ -42,7 +40,6 @@ export default function ({ getService, getPageObjects }: FtrProviderContext) {

it('should filter child control options by parent control value', async () => {
await comboBox.set('listControlSelect0', 'BR');

const childControlMenu = await comboBox.getOptionsList('listControlSelect1');
expect(childControlMenu.trim().split('\n').join()).to.equal(
'14.61.182.136,3.174.21.181,6.183.121.70,71.241.97.89,9.69.255.135'
Expand Down