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
33 changes: 0 additions & 33 deletions x-pack/test/accessibility/apps/group3/upgrade_assistant.ts
Original file line number Diff line number Diff line change
Expand Up @@ -91,39 +91,6 @@ export default function ({ getService, getPageObjects }: FtrProviderContext) {
});
});

describe('ES deprecations logs flyout', () => {
beforeEach(async () => {
await PageObjects.upgradeAssistant.navigateToPage();
});

it('with logs collection disabled', async () => {
await PageObjects.upgradeAssistant.clickOpenEsDeprecationsFlyoutButton();
const loggingEnabled = await PageObjects.upgradeAssistant.isDeprecationLoggingEnabled();
if (loggingEnabled) {
await PageObjects.upgradeAssistant.clickDeprecationLoggingToggle();
}

await retry.waitFor('Deprecation logging to be disabled', async () => {
return !(await PageObjects.upgradeAssistant.isDeprecationLoggingEnabled());
});
await a11y.testAppSnapshot();
});

it('with logs collection enabled', async () => {
await PageObjects.upgradeAssistant.clickOpenEsDeprecationsFlyoutButton();
const loggingEnabled = await PageObjects.upgradeAssistant.isDeprecationLoggingEnabled();
if (!loggingEnabled) {
await PageObjects.upgradeAssistant.clickDeprecationLoggingToggle();
}

await retry.waitFor('UA external links title to be present', async () => {
return testSubjects.isDisplayed('externalLinksTitle');
});

await a11y.testAppSnapshot();
});
});

describe('Elasticsearch deprecations page', () => {
beforeEach(async () => {
await PageObjects.common.navigateToUrl(
Expand Down